好记性不如烂笔头。

C#.NET

.NET一直都很喜欢。
C#.NET

三十几个asp.net技巧

   1.//弹出对话框.点击转向指定页面 Response.Write("<script>window.alert('该会员没有提交申请,请重新提交!')</script>"); Response.Write("<script>window.location ='http://www.mayb.cn/bizpulic...

C#.NET

FineUI web.config

   <?xml version="1.0" encoding="utf-8"?><configuration>  <configSections>    <section name="FineUI" type="FineUI.ConfigSection, FineUI" re...

C#.NET

利用全局文件Global.asax 捕获整个项目异常错误

   利用全局应用程序类来帮忙获取异常信息,利用 server.Transfer('''')指定接受错误的页面;加上在接受错误页面中利用 server.GetLastError() 获取前一个异常源。在Global.asax中写以下代码  protected void Application_Error(object sender, EventA...

C#.NET

vs替换空行

   查找内容:^:b*$\n 然后勾上使用正则表达式,点全部替换如图:

C#.NET

FineUI web.config 配置

   在开发项目之前请配置好 Web.config:设置 configuration 配置节: <configSections> <section name="FineUI" type="FineUI.ConfigSection, FineUI"/> </configSections...

C#.NET

LINQ TO XML 用法

   Linq to XML同样是对原C#访问XML文件的方法的封装,简化了用xpath进行xml的查询以及增加,修改,删除xml元素的操作。C#访问XML文件的常用类:XmlDocument,XmlElement,XmlAttribute,XmlNode,XmlText等;Linq to XML 中的常用类 :XDocument,XElement,XAtt...

C#.NET

C# 对象与JSON串互相转换

   DoNet2.0 需要借助于Newtonsoft.Json.dll using System; using System.IO; using System.Text; using Newtonsoft.Json; namespace OfflineAcceptControl.UCTools { public class Jso...

C#.NET

C#请求URL读取结果

   无参数请求方法: HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://www.mayb.cn"); HttpWebResponse response = (HttpWebResponse)requ...

C#.NET

如何在ashx文件中使用Session

   导入命名空间: using System.Web.SessionState; 实现IRequiresSessionState接口 using System; using System.Web; using System.Web.SessionState; public class Test : IHttpHandler,IRequiresSessio...