Liinking two web pages
-
I am doing a project which requires me to have a link from one page that will direct/take me to another page. How can i do this..?
-
I am doing a project which requires me to have a link from one page that will direct/take me to another page. How can i do this..?
Do not cross post - pick a forum and post in that forum only!
Never underestimate the power of human stupidity RAH
-
Do not cross post - pick a forum and post in that forum only!
Never underestimate the power of human stupidity RAH
sorry.! i was not sure whether to post in C# or ASP.Net
-
I am doing a project which requires me to have a link from one page that will direct/take me to another page. How can i do this..?
-
I am doing a project which requires me to have a link from one page that will direct/take me to another page. How can i do this..?
Easiest way : response.redirect("MyOtherPage.aspx"); if you need to pass data you can use the session object ( e.g Session["firstPage"] = myObject) and retrieve it from the second page ( many programmers see the session as the root-of-all-evils, but I think its ok to use it to pass small( <10k ) object).