Click here to Skip to main content
15,913,669 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Iwant to Create the page when i clicked the link the another page will display below the link lable. for example in codeproject page when we clicked Ask a Question this page is displayed below, similiarly When we clicked Mine the list of our questions are displayed, that's like i want.

Please help some body,

Thanks in Advance
Posted

Right click on your Solution Explorer then

click Add new item ->select Master page.

open the design view of master page

R-Click on ContentPlaceHolder select add content page.(using this option you can create any number of content page for this master page)

In the design view of master page place the menu.

In each menu give the url of relevant Content page So than when you run the application you can see what you expected..
 
Share this answer
 
Select the properties of the linkbutton and set the PostbackUrl to the page you want to redirect.
Or you can use HTML links.
Syntax:
HTML
<a href="page url">Link text</a> 
 
Share this answer
 
v2
devausha wrote:
when i clicked the link the another page will display below the link lable

If i am getting you right.
you need to create a MasterPage in which you add all the links(as menu).
and then create the rest of the pages as its content page.

you can also put update panel in your master page to avoid reload.
 
Share this answer
 
v2

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