URL Rewriting in ASP.NET

Dynamic Url ReWriting ShowAllData.aspx-------------------------------------
ShowAllData.aspx.cs---------------------------------- protected void Page_Load(object sender, EventArgs e) { if(IsPostBack==false) { dtlstproducts.DataSource = GetProductDataTable(); dtlstproducts.DataBind(); //Response.Redirect("ShowAllData"); } }