Modal popup
-
Hi Friends....., i can take Modal popup control.using that control display one panel. in that panel design two fields like email and password, i can take one ADD button, how to insert values when clicking on ADD button.
-
Hi Friends....., i can take Modal popup control.using that control display one panel. in that panel design two fields like email and password, i can take one ADD button, how to insert values when clicking on ADD button.
just add an OnClick event handler to ADD button and in this handler you may access the fields and insert whatever you want. Calin
-
Hi Friends....., i can take Modal popup control.using that control display one panel. in that panel design two fields like email and password, i can take one ADD button, how to insert values when clicking on ADD button.
just to back up the previous response - you implement it the same way you'd implement it if you wasn't using the modal popup. Presumably your button is an asp:Button so create your event handler (if you don't know how to write it manually then just double click it in your IDE designer) and add your code. When the button is clicked by a user it will cause a postback and your code will execute. Have you managed to get your modal box popping up ok?
Mark Graham (MCP) // The Doodler blogging at: dotnet notepad