J Jim Heavey Feb 27, 2004 #1 If I want to cause an new instance of a browser window to open up to a asp.net page, How do I cause this to happen?
If I want to cause an new instance of a browser window to open up to a asp.net page, How do I cause this to happen?
G Guest Feb 27, 2004 #2 You have to use Javascript window.open(..,...,...) function For example window.open("your file path",'width=800,height=600,scrollbars=yes,resizable=yes,top=5,left=10') Suresh ----- Jim Heavey wrote: ---- If I want to cause an new instance of a browser window to open up to a asp.net page, How do I cause this to happen
You have to use Javascript window.open(..,...,...) function For example window.open("your file path",'width=800,height=600,scrollbars=yes,resizable=yes,top=5,left=10') Suresh ----- Jim Heavey wrote: ---- If I want to cause an new instance of a browser window to open up to a asp.net page, How do I cause this to happen
S Scott Mitchell [MVP] Feb 27, 2004 #3 Jim said: If I want to cause an new instance of a browser window to open up to a asp.net page, How do I cause this to happen? Click to expand... Client-side JavaScript. Look into the window.open() function. -- Scott Mitchell (e-mail address removed) http://www.4GuysFromRolla.com http://www.ASPFAQs.com http://www.ASPMessageboard.com * When you think ASP, think 4GuysFromRolla.com!
Jim said: If I want to cause an new instance of a browser window to open up to a asp.net page, How do I cause this to happen? Click to expand... Client-side JavaScript. Look into the window.open() function. -- Scott Mitchell (e-mail address removed) http://www.4GuysFromRolla.com http://www.ASPFAQs.com http://www.ASPMessageboard.com * When you think ASP, think 4GuysFromRolla.com!