Click to See Complete Forum and Search --> : How to open New Browser window using ASP Form submit button??


Hacken
September 1st, 2003, 09:54 PM
hi~~ guy...
i have a question here how can we open the new browser window using ASP code??
for example:
<form name="form1" id="form1" method="post" action="adm_login.asp">
with this part of code i can open current .asp page, but thats not the new window.....
can anyone gove me an advise???

thanksssss... :)

anupam kant
September 2nd, 2003, 01:00 AM
try this:

<form name="form1" id="form1" method="post" action="adm_login.asp" target=_blank >

setting target ="_blank" will open action page in a new window


hope this helps