三十几个asp.net技巧
1.//弹出对话框.点击转向指定页面 Response.Write("<script>window.alert('该会员没有提交申请,请重新提交!')</script>"); Response.Write("<script>window.location ='http://www.mayb.cn/bizpulic...
1.//弹出对话框.点击转向指定页面 Response.Write("<script>window.alert('该会员没有提交申请,请重新提交!')</script>"); Response.Write("<script>window.location ='http://www.mayb.cn/bizpulic...
<?xml version="1.0" encoding="utf-8"?><configuration> <configSections> <section name="FineUI" type="FineUI.ConfigSection, FineUI" re...
利用全局应用程序类来帮忙获取异常信息,利用 server.Transfer('''')指定接受错误的页面;加上在接受错误页面中利用 server.GetLastError() 获取前一个异常源。在Global.asax中写以下代码 protected void Application_Error(object sender, EventA...
查找内容:^:b*$\n 然后勾上使用正则表达式,点全部替换如图:
在开发项目之前请配置好 Web.config:设置 configuration 配置节: <configSections> <section name="FineUI" type="FineUI.ConfigSection, FineUI"/> </configSections...
Linq to XML同样是对原C#访问XML文件的方法的封装,简化了用xpath进行xml的查询以及增加,修改,删除xml元素的操作。C#访问XML文件的常用类:XmlDocument,XmlElement,XmlAttribute,XmlNode,XmlText等;Linq to XML 中的常用类 :XDocument,XElement,XAtt...
DoNet2.0 需要借助于Newtonsoft.Json.dll using System; using System.IO; using System.Text; using Newtonsoft.Json; namespace OfflineAcceptControl.UCTools { public class Jso...
无参数请求方法: HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://www.mayb.cn"); HttpWebResponse response = (HttpWebResponse)requ...
WinFrom: public static string StringToMD5Hash(string inputString) { MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider(); byte[] encryptedBytes = md5....
导入命名空间: using System.Web.SessionState; 实现IRequiresSessionState接口 using System; using System.Web; using System.Web.SessionState; public class Test : IHttpHandler,IRequiresSessio...