Ask a Question related to Dreamweaver AppDev, Design and Development.
-
wilco #1
close window
Hello,
how can you close a pop up window with vb in asp.net?
thanks
wilco Guest
-
window.close
Hi I'm building a button and use the command: getURL("javascript:window.close()"); To close the IE window. It's work perfectly on some... -
Window.close()
When I open a window using <a href='' onClick='zoombig('studentphotozoom.cfm?file=#bigpic#','winbigpic','yes')'>Photo< /a> Closing that window ... -
close my project that is in a browser window (close this window)
How can I do this with a button? What do I have to put into button? -
MIAW forget window vs. close window
I'm having a problem with forget window. Sometimes when I forget a window, the projector crashes. The problem sometimes happens the first time I... -
window sizing & close this window code
Sharon wrote on 16 jul 2003 in microsoft.public.inetserver.asp.general: No ASP to be seen, Sharon, please see a clientside NG, --... -
Natty Gur #2
Re: close window
Hi,
Use Page.RegisterStartupScript to embed client side java script
window.close(); you wont see the method with intellisense but it exist.
Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
Saravana #3
Re: close window
Check out this article,
[url]http://www.microsoft.com/india/msdn/articles/PopupCalendarinASP.aspx[/url]
--
Saravana
Microsoft India Community Star,MC**
[url]www.ExtremeExperts.com[/url]
"wilco" <wilco.bikker@hetnet.nl> wrote in message
news:bgj18e$9h1$1@reader10.wxs.nl...> Hello,
>
> how can you close a pop up window with vb in asp.net?
>
>
>
> thanks
>
>
Saravana Guest
-
PJ #4
Re: close window
Response.Clear()
Response.Write("<html><body onload=""window.close()""></body></html>")
Response.End()
"wilco" <wilco.bikker@hetnet.nl> wrote in message
news:bgj18e$9h1$1@reader10.wxs.nl...> Hello,
>
> how can you close a pop up window with vb in asp.net?
>
>
>
> thanks
>
>
PJ Guest
-
Kory #5
Close window
Can someone tell me what is wrong with my code. I have a small window in
which a form, when submitted, forwards to this page and it is supposed to
close the windw and forward to another page but it isn't working.
Thanks
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Listing Updated</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_callJS(jsStr) { //v2.0
return eval(jsStr)
}
//-->
</script>
</head>
<body>
<div align="center"><img src="/images/spacer.gif" width="1" height="1"
border="0"
onload="MM_callJS('javascript:window.opener.docume nt.location.href=\'index.asp\';self.close();')"></div>
</body>
</html>
Kory Guest



Reply With Quote

