摘要:
/// /// 获取一个8到15位的随机密码 /// /// private string GetRandomPwd() { StringBuilder Vchar = new StringBuilder(); Vchar.Append("0,1,2,3,4,5,6,7,8,9,");//数... 阅读全文
摘要:
Global.asax 1 protected void Application_BeginRequest(object sender, EventArgs e) 2 { 3 //遍历Post参数,隐藏域除外 4 foreach (string i in this.Request.F... 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using Syste... 阅读全文
摘要:
近来我发现我一些同事。在用ajax时,用数据源,都喜欢重新新建一个页面.其实我是很不喜欢这种模式,主要原因,一是后期维护麻烦,还要去找哪些页面,二是不能调用一些本页原有的数据方法.因此我在这里做了一个测试的案例。如下 CS代码 1 using System; 2 using System.D... 阅读全文