Hi!
I am wondering if there is a way that I can have the panel that I am using in the modal popup extender be visible in the natural order of the page.
Basically I have a simple email signup form, at the bottom of a fairly long page, in a panel, I want that panel to be there at the bottom, visible and be accessible to the user. Then when they submit, I do validation with a ReCaptcha as well as asp.net regex validation (confirm an email asd@asd.asd). But if there is an error, rather than reloading the page and the user being clueless as to why the page just loaded, I want to call that same panel in a modal popup and let them correct their errors, rinse and repeat until the email is good and the recaptcha is good. Then after success the panel should be in place in the page again without the modal popup
From what I can see as soon as you associate a panel with a modal popup extender, it makes it invisible and I dont see any options in the control to force it to be visible. Any thoughts? Do I need to make 2 seperate panels and turn up the spaghetti?
Also another small issue: I tried using an imagebutton to load the panel in the popup, which works fine, but it is forcing my validation to fire off before the input elements have been filled out by the user. Is there something I need to change to make that popup not push validation? Currently I use in the C# code if (Page.IsValid) {} to check the ReCaptcha, so do I need to make this OnPostBack or something?
Thanks a ton!