I have my custom css/html popup lightbox and a form with a button on it.
My goal is, when you press a button:
- open this popup
- then
Thread.Sleep
- and after that
Response.Redirect
to another page.
Is this possible?
Here is my html code:
<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>