web.config中配置字符串中特殊字符的处理
摘要:配置文件中往往要用到一些特殊的字符,Web.Config默认编码格式为UTF-8,对于XML文件,要用到实体转义码来替换。对应关系如下:字符转义码& 符号&&单引号''双引号""大于>>小于<<
阅读全文
posted @
2011-08-22 13:11
麻大痴
阅读(266)
推荐(0)
Ajax调用webservice实现RadiobuttonList 和DorpDownList联动
摘要:1、首先定义简单的实体类:View Code using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace GenerateBaseDataWeb{ public class ClsServiceDrp { private string id; public string Id { get { return id; } set { id = value; } } private string name; public string Name { get { return na
阅读全文
posted @
2011-03-09 08:59
麻大痴
阅读(426)
推荐(0)
转: 10W条数据拷贝效率测试
摘要:本文转自:http://www.cnblogs.com/yangtongnet/archive/2010/05/25/1743713.html接到一个需求,实现一个小功能—导入Excel,想想诸位活跃于.NET平台上的兄弟们,其中应该有相当一部分是从事如信息系统类开发的,所以小弟在这里姑且臭屁一下导入Excel的几种实现方法,如有错误之处,烦请大虾指正。 1、 Excel导入 R...
阅读全文
posted @
2010-08-20 11:00
麻大痴
阅读(998)
推荐(0)