Click here to Skip to main content
15,890,336 members

For doing this you should the normal solution in any web application:
1) Implement your menu items by using anchor tags[^];

2) The href attribute, for each menu item, should contains the URL for your site by using query string parameters.
 
Share this answer
 
Hi U need to redirect same page ? or when u click button need to load some details in gridview in same page itlsef ?

If redirect same page in menu click,add this code in menu click event in server side code

C#
Response.Redirect("look.aspx");//Here u give same page name.


in client side,add this code in menu client side click event

JavaScript
function Redirect() {
               window.location="look.aspx";//Here u give same page name.
            }


Regards
Aravindb
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900