link buttons view..........hlp me.........
-
Hi i have two html pages..., In first html page i have some two links like(link1, link2)..., In another html page i have 8 links like (link1 to link8)..., If i click in first html page that "Link1", then its want to go second html page and show first 4 links(link1 to link4)..., in that time that link5 to link8 want to be hide(visible=false)... Similarly,if i click "Link2" then its want to go second html page and show last 4 links(link5 to link8)..., in that time that link1 to link4 want to be hide(visible=false)... How to do this one..., Plz help me......
Magi
-
Hi i have two html pages..., In first html page i have some two links like(link1, link2)..., In another html page i have 8 links like (link1 to link8)..., If i click in first html page that "Link1", then its want to go second html page and show first 4 links(link1 to link4)..., in that time that link5 to link8 want to be hide(visible=false)... Similarly,if i click "Link2" then its want to go second html page and show last 4 links(link5 to link8)..., in that time that link1 to link4 want to be hide(visible=false)... How to do this one..., Plz help me......
Magi
Why not just pass the 4 hyperlinks to the second page and set them manually when you transfer control to it? You could also do the same with just passing a single value to the second page and setting 4 textboxes with links to the specific values you want to display. David
-
Why not just pass the 4 hyperlinks to the second page and set them manually when you transfer control to it? You could also do the same with just passing a single value to the second page and setting 4 textboxes with links to the specific values you want to display. David
Hi plz send the code..., I didnt get the answer..., Plz hlp me...
Magi
-
Hi plz send the code..., I didnt get the answer..., Plz hlp me...
Magi
Here's an article with some sample code on how to pass information from one html page to another: http://www.vbdotnetheaven.com/UploadFile/avi\_sanjay/ServerTransfer02222007000910AM/ServerTransfer.aspx You can transfer which link they clicked on from the first page (or make it have two buttons instead or something). Or, even better, why not just have three html pages in this format: Page 1: Click Link/Button 1 - Goto page 2 Click Link/Button 2 - Goto page 3 That way you don't have to do anything fancy to make it work. David