أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
Response.Redirect("Default.aspx");
Response.redirect("Web site with path")
if you want to change URL of the web site from Page1.aspx to Page2.aspx
use Response.Redirect("Page2.aspx");
otherwise use Server.Transfer("Page2.aspx");
Response.Redirect("Secondpagepath") in submit button click of first page
Response.Redirect("URL Web Site");
;("Response.Redirect("WebPage.Aspx
forward method
The Respose.Redirect method is used to post a page to another page, as shown in the following code snippet:Response.Redirect("DestinationPageName.aspx");