G
Guest
If have a page with a frameset set up as below:
There are 3 rows of pages displayed.
I need the navigation to be in the middle.
When I click on one of the links in the navigations, I need to be able
to dictate a new source page for the top row AND the bottom row. How
can I do this without refreshing/reloading the middle page with my
nav?
Any help would be greatly appreciated.
-reynald
7078895
---------
Dim outputstr As String
outputstr = "<html>" _
& vbCrLf & "<head>" _
& vbCrLf & "<title>Forms from code
behind</title>" _
& vbCrLf & "</head>" _
& vbCrLf & "<frameset rows='250,70,200'
FRAMESPACING='0' FRAMEBORDER='NO' BORDER='0'>" _
& vbCrLf & "<frame name='TopFrame' src='" &
"NewsHeader.aspx" & "' FRAMEBORDER='0' BORDER='0' MARGINWIDTH='0'
MARGINHEIGHT='0' SCROLLING='yes'>" _
& vbCrLf & "<frame name='Nav' src='" &
"navigation.aspx" & "' FRAMEBORDER='0' BORDER='0' MARGINWIDTH='0'
MARGINHEIGHT='0' SCROLLING='yes'>" _
& vbCrLf & "<frame name='MainFrame' src='" &
"NewsBody.aspx" & "' FRAMEBORDER='0' BORDER='0' MARGINWIDTH='0'
MARGINHEIGHT='0' SCROLLING='yes'>" _
& vbCrLf & "</frameset>" _
& vbCrLf & "</html>"
Response.Write(outputstr)
There are 3 rows of pages displayed.
I need the navigation to be in the middle.
When I click on one of the links in the navigations, I need to be able
to dictate a new source page for the top row AND the bottom row. How
can I do this without refreshing/reloading the middle page with my
nav?
Any help would be greatly appreciated.
-reynald
7078895
---------
Dim outputstr As String
outputstr = "<html>" _
& vbCrLf & "<head>" _
& vbCrLf & "<title>Forms from code
behind</title>" _
& vbCrLf & "</head>" _
& vbCrLf & "<frameset rows='250,70,200'
FRAMESPACING='0' FRAMEBORDER='NO' BORDER='0'>" _
& vbCrLf & "<frame name='TopFrame' src='" &
"NewsHeader.aspx" & "' FRAMEBORDER='0' BORDER='0' MARGINWIDTH='0'
MARGINHEIGHT='0' SCROLLING='yes'>" _
& vbCrLf & "<frame name='Nav' src='" &
"navigation.aspx" & "' FRAMEBORDER='0' BORDER='0' MARGINWIDTH='0'
MARGINHEIGHT='0' SCROLLING='yes'>" _
& vbCrLf & "<frame name='MainFrame' src='" &
"NewsBody.aspx" & "' FRAMEBORDER='0' BORDER='0' MARGINWIDTH='0'
MARGINHEIGHT='0' SCROLLING='yes'>" _
& vbCrLf & "</frameset>" _
& vbCrLf & "</html>"
Response.Write(outputstr)