I have a unique custom CSS/HTML popup lightbox along with a form that contains a button.
My objective is, upon clicking the button:
- to open the popup
- followed by using
Thread.Sleep
- and finally carry out a
Response.Redirect
to a different page.
Do you think this can be achieved?
Below is my HTML code snippet for reference:
<a href="#test"><img src="images/smallimg.jpg"/></a>
<div class="overlay" id="test">
<img src="images/bigimg.jpg"/>
<a href="#page" class="close">x Close</a>
</div>