随笔分类 -  ASP.NET

摘要:View Code protected void Page_Load(object sender, EventArgs e) { string code = Request["code"]; string app_id = ConfigurationManager.AppSettings["APP_ID"]; string app_key = ConfigurationManager.AppSettings["APP_KEY"]; string strHtml; string message; Strea... 阅读全文
posted @ 2012-07-25 09:54 o07 阅读(237) 评论(0) 推荐(0)
摘要:View Code 1 protected void Application_BeginRequest(object sender, EventArgs e) 2 { 3 string url = HttpContext.Current.Request.Url.AbsolutePath; 4 string mainPath = @"^/[a-zA-Z]+$"; 5 string secondPath = @"^/[a-zA-Z]+_[a-zA-Z]+_\d+\.html$"; 6 ... 阅读全文
posted @ 2012-05-03 16:14 o07 阅读(133) 评论(0) 推荐(0)