Need help with newbie type issue

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have several hyperlinks in my main document that when clicked, I want the new window to open up without an addressbar or statusbar. I figured I could put something on the new page in the Page_Load section, but so far I am having no luck whatsoever. I am using VB .NET 2003 if that helps

TIA - John
 
Use Javascript function and call the function on "OnClick" event of the hyperlink
function openWind()
window.open ('Testwindow.aspx',WwindowName','width=370,height=370,titlebar=no,scrollbars=no,resizable=no,status=no,top=200,left=300')
}
 
Back
Top