In my Global.asax
Application_Start event()
{ System.Web.Routing.RouteTable.Routes.MapPageRoute("RoutName","URL with Parameter",Page to handle it",Physical URL Access);
}
From My C#
While clicking the button i write the following code is working fine.
Protected void Button1_Click(object sender, EventArgs e)
{
Response.RedirectToRoutePermanent("RouteName", new { "URL with Parameter" });
}
Here all the .aspx files and htm file are in the same directory.
Now, The destination Page contains two iframes. those iframes are not showing the data.