D
Dave
I have a button on a nested master.page that opens a popup titled
OnlineHelp.aspx with window.open. It works fine as long as I stay in
the root of my site. When I navigate to a page in another folder it
thinks that the OnlineHelp page is in the root of that folder...and it
gets lost. Below is the code that I'm using...
StringBuilder sb = new StringBuilder();
sb.Append("<script>");
sb.Append("window.open('Documentation/OnlineHelp.aspx',
'','menubar=0,toolbar=0,height=475,width=435,resizable=1,scrollbars=1,
Left=50, top=120');");
sb.Append("</script>");
is there another way to identify the path?
Or is there a more prefered way to do this?
Thanks for your help.
OnlineHelp.aspx with window.open. It works fine as long as I stay in
the root of my site. When I navigate to a page in another folder it
thinks that the OnlineHelp page is in the root of that folder...and it
gets lost. Below is the code that I'm using...
StringBuilder sb = new StringBuilder();
sb.Append("<script>");
sb.Append("window.open('Documentation/OnlineHelp.aspx',
'','menubar=0,toolbar=0,height=475,width=435,resizable=1,scrollbars=1,
Left=50, top=120');");
sb.Append("</script>");
is there another way to identify the path?
Or is there a more prefered way to do this?
Thanks for your help.