L
Lin Ma
I have a ASP page with form and I want to after user click the CLOSE button,
it will perform some functions and finally Close the window.
Can I do this?
Thanks
Lin
Here is my code: File name: page1.asp
<Form method = "post" action="page1.asp">
<input name="Close" type="submit" value="Close">
<input type="checkbox" name="checkbox" value="yes">
</form>
<% if request.form("Close") = "Close" then
...........do some functions......
finally close this window. What kind of command I can use? Window.close??
end if
%>
it will perform some functions and finally Close the window.
Can I do this?
Thanks
Lin
Here is my code: File name: page1.asp
<Form method = "post" action="page1.asp">
<input name="Close" type="submit" value="Close">
<input type="checkbox" name="checkbox" value="yes">
</form>
<% if request.form("Close") = "Close" then
...........do some functions......
finally close this window. What kind of command I can use? Window.close??
end if
%>