Model Forms in ASP?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to create a pop-up form in ASP that works like the Windows modal forms where the parent form is locked until action is taken on the child form. How do I create a pop-up form and control the size (smaller than the parent)? Then, how do call it and keep the parent form in the background? I know about reponse.redirect and server.transfer
Thanks for your suggestions!
 
Use the JScript ShowModalDialog method
Here's more info:
http://msdn.microsoft.com/library/d...r/dhtml/reference/methods/showmodaldialog.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net


digJazz said:
I need to create a pop-up form in ASP that works like the Windows modal
forms where the parent form is locked until action is taken on the child
form. How do I create a pop-up form and control the size (smaller than the
parent)? Then, how do call it and keep the parent form in the background?
I know about reponse.redirect and server.transfer.
 
Back
Top