Query String Secure in ASP.NET

  1. protected override void OnPreInit(EventArgs e)  
  2. {  
  3.     //Start Secure query string method // 20 Nov 2015 Ashish Srivastava  
  4.     Uri Obj = null;  
  5.     if (Request.UrlReferrer == Obj)  
  6.     {  
  7.         string str = Path.GetDirectoryName(this.Page.AppRelativeVirtualPath.ToString());  
  8.         //Redirect to page   
  9.         Response.Redirect("redirectpage.aspx");  
  10.     }  
  11. }