| Author: bharat kumar 15 Oct 2008 | Member Level: Gold | Rating: Points: 1 |
response.redirect("pagename");
|
| Author: Ashutosh Kumar 15 Oct 2008 | Member Level: Gold | Rating:   Points: 3 |
On the click event write the code to move another page:
Response.Redirect("seconpage.aspx");
|
| Author: Miss Meetu Choudhary 15 Oct 2008 | Member Level: Diamond | Rating:   Points: 3 |
you can use asp.net and javascript both for this purpose
in ASP.NET c# you can do like this
Response.Redirect("PageURL");
and in javascript
window.open("PageURL");
note-- in the above example i have given the javascript will open a new window while the response.redirect will open the page in the same window
== Thanks and Regards Meetu Choudhary
Thanks and Regards Miss Meetu Choudhary (Site Coordinator) Go Green Save Green My Profile on Google
|
| Author: puneet malviya 12 Dec 2008 | Member Level: Gold | Rating:  Points: 2 |
Hi..... Response.Redirect("Second.aspx"); Responce.Transfer("Second.aspx");
both are working well... Response.Redirect it's send the request to browser Responce.Transfer it's not send any request to browser ....
|