how to move from one place to another place in a page with in a page when i click a button.
for example check this site http://arkprosys.com in that site when i click on about it move. i need that logic.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanjeeb LenkaPosted Nov 26, 2013, 3:52 AM
you can use
Response.Redirect("http://www.google.com"); // you can specify your own url
or
Server.Transfer("url");// it will redirect within your website and it will not update the url in browser
venkata kumarPosted Nov 26, 2013, 3:28 AM
try this
Response.Redirect("~/Home.aspx");