自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

记录、分享

互联网门外汉

  • 博客(21)
  • 资源 (36)
  • 收藏
  • 关注

原创 大三下学期的读书计划

1. 《离散数学及其应用》2. 《算法导论》3. 《wcf技术剖析》4. .net经典《CLR Via  C#》

2011-02-27 10:49:00 709

原创 一个工程中如何包含多个web.config?

<br />在站点的默认 Web.Config 文件中使用:<br /><appSettings configSource="this.config"/>   <br />然后新建 this.Config 文件: <br /><?xml version="1.0" encoding="utf-8"?> <appSettings> <add key="test" value="Hello world."/> </appSettings> <br />在 .NET Framework 2.0

2011-02-24 21:18:00 1764

原创 .net同一个解决方案下面多个web项目的解决方法

<br />经过n次的google,下面是解决方法:<br /> <br />1. 新建一个web application<br />2. 在该application中新建文件夹SubSystem<br />3. 在整个的项目中添加web site。注意这其中的路径(这里的路径是上面新建的文件夹的路径)。<br /><br />4. 上面的 工程中主工程中包含公共资源,能够被子工程使用。<br /><br />

2011-02-24 21:14:00 2468

原创 VS 2010: An error occurred loading a configuration file: Failed to map the path ‘/’.

<br /> <br />I was using the System.Web.Configuration.WebConfiguration class to open the configuration for the site from one of my logic dll’s and I got the wonderful error An error occurred loading a configuration file: Failed to map the path ‘/’.<br />I

2011-02-20 21:41:00 3392 1

原创 jquery图表插件highcharts

1. 官网及features?2. highcharts(asp.net)?3. 代码下载1. 官网及features?highcharts官网:http://www.highcharts.com/demo site : http://www.highcharts.com/demo/?example=bar-basic&theme=gridfeatures:2. highcharts使用(asp.net)?页面Default.aspx:

2011-02-20 15:52:00 2631

原创 NuGet

NuGet is a Visual Studio extension that makes it easy to install and update open source libraries and tools in Visual Studio.

2011-02-18 17:15:00 573

原创 goto switch case应用

<br />switch(MyVariable){ case1: //statements …........ if ( expression ) gotocase3: break; case2: ….. break; case3: …...... break;}<br />

2011-02-18 14:55:00 833

原创 c#中结构体structure初始化

<br />1. c# structure基本事实<br />2. 初始化问题<br />3. 总结<br /> <br /> <br />1. c# structure基本事实<br /> <br />c# structure为值类型,和class是相类似,但是c#中的class是引用类型。<br /> <br /> <br />2. 初始化问题<br /> <br />下面是两段代码,看上去是相似的,但是其中一段代码是不能够编译的:<br />public struct StructMember{

2011-02-18 14:52:00 12881

原创 asp.net确认删除实现?

删除

2011-02-18 14:25:00 1182

原创 上传图片并保存到服务器上之后,如何得到该图片服务器路径(http://~)

<br />1. 情景描述<br />2. 测试代码<br /><br /> 1. 情景描述<br /> <br />首先使用asp.net中自带空间FileUpload将图片上传到服务器上之后,在“在线编辑器”中需要显示该图片,需要得到该图片的以http://开头的url路径<br /> <br />2. 测试代码<br /> <br />其实只需要使用 System.Web.UI.Control.ResolveUrl (string),其中string参数是上传图片的相对路径。<br /> <br />

2011-02-13 19:34:00 20678 3

原创 ASP.Net FAQ长期更新中...

1. iframe自适应高度?更新中...

2011-02-13 10:58:00 866

原创 iframe自适应高度?

<br /> <br />1. 下载代码jquery-auto-iframe-height或者下载<br /> <br />2. 使用demo<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang=

2011-02-13 10:56:00 2809

原创 configSetter(RoleEnvironment.GetConfigurationSettingValue(configName));错误解决方法

1. 参看配置文件中的connection string name是否正确。2. I can think of two reasons:You are using Azure SDK 1.3 and the SetConfigurationSettingPublisher must be called in your Global.asax.cs Application_Start;You are not setting the Startup project as the *.CloudService o

2011-02-10 21:32:00 835

原创 自动生成数据库表的insert,update,delete存储过程工具

如何生成数据库中某张表的插入,删除,更新的存储过程,可以使用这个工具,这里可以下载:下载地址,界面如下:

2011-02-10 21:28:00 965

原创 sql根据传入参数确定选择前几条数据的存储过程

<br />sql代码:<br />USE [BeijingAgricultureDB]GODECLARE @return_value intEXEC @return_value = [dbo].[SelectTopNNotifications] @num = 2SELECT 'Return Value' = @return_valueGO<br /> <br />其他示例:<br />/* Show not having access to variables from th

2011-02-07 22:39:00 997

原创 .net 4.0 ValidateRequest="false" 无效

<br />当你在安装了.NET Framework 4.0以上版本后,当你的应用程序以.NET Framework 4.0为框架版本,你的任意服务器请求,都将被进行服务器请求验证(ValidationRequest),这不仅包括ASP.NET,同时也包括Web Services等各种HTTP请求,不仅仅针对aspx页面,也针对HTTP Handler,HTTP Module等,因为这个验证(Valify)的过程,将会发生在BeginRequest事件之前。<br />    问题的解决方案就是在全局级别(

2011-02-06 02:09:00 616

原创 在updatepanel面板中使用fileupload上传图片

<br />By default, FileUpload control will not work inside an UpdatePanel control for uploading files using Asynchronous postback. This is because, the file uploading and file manipulations is restricted by default in client side for security reasons. Hence

2011-02-04 01:44:00 641

原创 Sys.WebForms.PageRequestManagerParserErrorException详解

Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it<br />If you've used the Microsoft ASP.NET AJAX UpdatePanel control, there's a good chance you've hit the "Sys.WebForms.PageRequestManagerParserErrorException" error.<br />

2011-02-03 23:46:00 614

原创 asp.net网站模块源码列表

1. 如何生成网页略缩图?2. 如何实现登陆页面(包含生成验证码和如何避免sql注入)?

2011-02-03 22:01:00 672 1

原创 如何生成网页的略缩图?

<br />1. 关键代码:<br /> <br />using System;using System.Drawing;using System.Windows.Forms;using System.Threading;using System.IO;using System.Reflection;namespace WebsiteThumbnail{ public class WebsiteThumbnailImageGenerator {

2011-02-03 21:58:00 1435

原创 sql server image type

<br />

2011-02-02 10:37:00 603

threadpool

threadpool实现方式 threadpool实现方式 threadpool实现方式

2011-11-21

simple-cdmh-mapreduce

simple-cdmh-mapreduce

2011-11-19

asp.net 头像上传裁剪模块

asp.net 头像上传裁剪模asp.net 头像上传裁剪模asp.net 头像上传裁剪模

2010-12-13

万年历控件万年历控件

万年历控件万年历控件万年历控件万年历控件万年历控件万年历控件万年历控件

2010-11-08

很好很好blog备份程序

blog备份程序。免费程序。blog备份程序。免费程序。blog备份程序。免费程序。blog备份程序。免费程序。blog备份程序。免费程序。

2010-10-23

SharePoint win7安装 程序

SharePoint win7安装 程序

2010-08-26

asp.net tag cloud实现代码

asp.net tag cloud实现代码

2010-06-30

网站后台管理模板 网站后台管理模板

网站后台管理模板网站后台管理模板网站后台管理模板网站后台管理模板网站后台管理模板网站后台管理模板

2010-06-15

89c51 串口波特率计算器

89c51 串口波特率计算器89c51 串口波特率计算器89c51 串口波特率计算器

2010-06-04

详细描述keil软件使用

详细讲述了keil软件的使用,详细讲述了keil软件的使用,详细讲述了keil软件的使用

2010-05-05

windows azure在xp下的安装程序

windows azure在xp下的安装程序

2010-05-03

在xp下安装windows azure sdk的安装程序

在xp下安装windows azure sdk的安装程序

2010-05-03

asp 网站插件开发demo

使用asp同时结合system.addin实现类似qq应用的插件体系

2010-04-20

exposing workflow as web service

exposing workflow as web service

2010-04-17

BackgroundWorker c#使用方法

BackgroundWorker c# 使用 demo ProgressBar

2010-03-29

workflow异常处理

workflow exception handling demo

2010-03-25

google chrome ubuntu

google chrome installer on ubuntu

2010-03-21

uboot移植s3c2410详解

很详细的移植过程,一起人从头开始,包括uboot的启动过程分析

2010-03-13

introducttion to flash ram

introducttion to flash ram

2010-03-10

workflow 自定义控件

workflow中自定义控件的实现过称代码。

2010-03-10

workflow hello world

workflow hello world demo

2010-03-07

c#中filesystemwatcher demo

c# filesystemwatcher demo,详细解释了filesystemwatcher使用

2010-03-06

ASP.Net web server demo

压缩文件上包含4个工程,在vs下编译成功,这四个工程包括web server,和另外的几个client(web版的和winform版的)

2010-03-05

skyeye lcd s3c2410实验

成功的实现了在skyeye下仿真lcd小程序

2010-03-02

iinniitt进程探悉

详细介绍linux init进程的信息。本资源是不需要资源分的,如果有时间,不放去这里看看http://hi.csdn.net/space-4295126-do-feed-view-me.html。也欢迎大家和我交流

2010-02-05

linux 内存使用方法

详细描述linux的内存使用方法。呵呵,很好的资料呕,免费的。赶快下载吧,更多的linux信息请转到http://hi.csdn.net/space-4295126-do-feed-view-me.html

2010-02-05

source insight使用方法(免费的呕)

sourceinsight使用方法,呵呵,免费的呕

2010-02-05

程序重定位.docx

编译(compile)和链接(link),是计算机编程语言的通用处理系统。编译,是把程序源代码转换为目标文件;链接,是把目标文件转换为可执行文件。

2010-01-28

ubuntu命令行下上网.doc

ubuntu命令行下上网,详细描述了如何使用命令为w3m来上网。

2010-01-28

Linux 内核对内存的使用方法.pdf

详细介绍linux对于内存管理的策略。是不可多的的好资源。

2010-01-20

linux0_11系统调用的执行过程是怎样的.doc

详细介绍linux0.11系统调用执行过程,包括源码注释。

2010-01-20

source insight使用方法

本文详细的描述了source insight建立工程,并且常用方法,能够较好的使用在源码的阅读上。请注意:使用的是word2007,本资源不需要使用“资源分”。

2010-01-17

Skyeye安装笔记和使用

SkyEye是一个开源软件项目,它是在Linux和Windows平台上实现一个纯软件模拟集成开发环境,模拟常见的嵌入式系统。可以在SkyEye上运行Linux,uClinux以及uC/OS-II等多款嵌入式操作系统和各种系统软件。

2010-01-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除