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')
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top