|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
frameset
I have made an aspx page with a treeview and a linkbutton. I also made an other blank aspx page. I have put these pages in an other page in a frameset.
<FRAMESET cols="17%,*" frameborder="NO" border="0" framespacing="0"> <FRAME src="WebForm1.aspx" scrolling="auto" NAME="title"> <FRAME src="WebForm2.aspx" scrolling="auto" NAME="file"> </FRAMESET> now i want to pass the selected nodeId from the treeview form webform1.aspx as parameter to the webform2.aspx when i click on the linkbutton. I want only the content of webform2.aspx to change, webform1.aspx stays the same. How do i do this? thanks joekske |
|
#2
|
|||
|
|||
|
hey,
I assume you have something like this in WebForm1.aspx: Click me 1 (ID 1) Click me 2 (ID 2) or something? and when you click one of them, it will change the "file" frame (WebForm2.aspx)? I think all you might need to do is to change the "target" of the link... ie: Code:
<a href='WebForm2.aspx?id=2' target='_file'>Click me 2</a> That should change only the page in the file window and you can then get the parameter from the URL Would that work? |
![]() |
| Viewing: Dev Articles Community Forums > Programming > General Programming Help > frameset |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|