ASP.NET重定向模块

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;

namespace WebMonitor
{
    /// 
    /// 重定向模块
    /// 
    public class RedirectModule : IHttpModule
    {
        public void Init(HttpApplication context)
        {
            context.BeginRequest += new EventHandler(Application_BeginRequest);
        }
        /// 
        /// JS           REDIRECT
        /// 14000        13000
        /// 
        /// 
        /// 
        protected void Application_BeginRequest(Object sender, EventArgs e)
        {
            //AddUrlToDatabase();
            //数据重写向 window.location.href
            HttpContext.Current.Response.Write("");//在不考虑带宽的情况下,此方法是最优的。
            //HttpContext.Current.Response.Write("");//在不考虑带宽的情况下,此方法是最优的。
            HttpContext.Current.Response.Redirect("http://www.baidu.com");//相差1000;
            HttpContext.Current.Response.End();//必须添加END
        }
        public void Dispose()
        {
        }
    }
}


  
    
  
  
    
      
    
  



 

你可能感兴趣的:(性能优化)