alexk
07-25-2002, 12:34 AM
I must open PopUp window (not regular browser) in client side.
How can I do it in ASP.NET by Visual basic code?
Please, no Java examples.
Please help me.
Thanks.
Thinker
07-25-2002, 08:11 AM
If you didn't want regular browser script, why did you post this
same question in the Javascript/VBScript forum?
alexk
07-25-2002, 09:35 AM
Because VBScript code can be useful for me too.
But not Java Script.
Thanks about a question:)
Thinker
07-25-2002, 10:12 AM
Do you have the VBScript online reference? It is available from
the Microsoft website. MsgBox is still supported, but I have no
idea how this works with asp.net (other than to send the correct
script in the html page).
Rezner
07-25-2002, 10:38 AM
Try this:<a href="#start" onclick="window.open('your page.htm','title','width=600,height=400,directories=no,location=no,men ubar=no,scrollbars=no,status=no,toolbar=no,resizable=no,screenX=600,sc reenY=400')">your link</a>
alexk
07-25-2002, 12:51 PM
To Rezner:
Thank You very very much.
Your example solve my problem?
Regards
AlexK
You're probably looking for something like this:
<a href="#start" onclick="showModelessDialog('PopUp.aspx?Accao=XPTO',null,'status:no;dialogWidth :473px;dialogHeight:115px;dialogHide:true;help:no;scroll:no')">your link</a>
This will open a dialog window that will always stay on top.
Try also the showModelDialog. It uses the same parametrers as the showModalessDialog.
AnaM