M
Matthew Speed
I apologize if this is a total newbie question:
I want to create a fairly simple web page with a select box navigator
at the top. The select control is set to AutoPostBack and the select
control has handler code that looks like:
Select Case drpNav.SelectedValue
Case "Home"
'code needed to show home.aspx
Case "Main"
'code needed to show main.aspx
Case "<additional case here>"
'etc...
End Select
I tried putting a server.execute("page.aspx") in the code part of the
Case but when I do that the executed page starts at the upper left so
my controls are on top of one another as though they are positioned
elements with differing z-index values.
What I would ideally lke to have is a region that sits right below the
select box that will receive the results of the execution of another
page. If that is hard then I just need the executed page to start
after the select control. Any suggestions would be greatly
appreciated.
TIA
I want to create a fairly simple web page with a select box navigator
at the top. The select control is set to AutoPostBack and the select
control has handler code that looks like:
Select Case drpNav.SelectedValue
Case "Home"
'code needed to show home.aspx
Case "Main"
'code needed to show main.aspx
Case "<additional case here>"
'etc...
End Select
I tried putting a server.execute("page.aspx") in the code part of the
Case but when I do that the executed page starts at the upper left so
my controls are on top of one another as though they are positioned
elements with differing z-index values.
What I would ideally lke to have is a region that sits right below the
select box that will receive the results of the execution of another
page. If that is hard then I just need the executed page to start
after the select control. Any suggestions would be greatly
appreciated.
TIA