I want to implement a mini window or popup window, so it appears when the user goes to webform1.aspx.
This mini window will ask the user for a confirmation code, if the code is correct, the webform1.aspx will load. If it's not correct it will redirect the user to another page.
I just want to know how to create it and how to work with the data entered in it.
piram
Member
127 Points
151 Posts
Mini window?
Apr 03, 2012 05:13 PM|LINK
Hi, i have webform1.aspx.
I want to implement a mini window or popup window, so it appears when the user goes to webform1.aspx.
This mini window will ask the user for a confirmation code, if the code is correct, the webform1.aspx will load. If it's not correct it will redirect the user to another page.
I just want to know how to create it and how to work with the data entered in it.
thanks...
all-alone808
Member
290 Points
75 Posts
Re: Mini window?
Apr 03, 2012 05:28 PM|LINK
jquer dialog box , grey box, thick box can be used for...
see this thread
http://www.steve-oh.com/blog/index.php/thickbox-31-within-aspnet-updatepanel/
http://eikden.net/2011/05/12/jquery-thickbox-in-asp-net/
ramiramilu
All-Star
95503 Points
14106 Posts
Re: Mini window?
Apr 03, 2012 05:40 PM|LINK
instead of asking confirmation code at starting of Webform1.aspx, when user clicks a link of any other item in page1.aspx then popup a modalpopup and ask for code...for that you can use AJAX ModalPopup extender - http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/ModalPopup/ModalPopup.aspx
Thanks,
JumpStart
piram
Member
127 Points
151 Posts
Re: Mini window?
Apr 03, 2012 09:02 PM|LINK
thanks...