Open div jquery on buttion click event cs code in asp.net
Hi.
I have problem to open jqury div by cs code behind file in asp.net.
The code
/* <head>
<style type="text/css">
<pre lang="css">.reminder_c
{
height: auto;
width:1000px;
background-color: #e2e2e2;
padding: 17px 10px 10px 10px;
position: fixed;
left:50%;
top: 80px;
margin-left: -510px;
z-index: 90;
display: none;
}</pre>
</script>
<pre lang="xml"><script src="js/myScript.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
setInterval(function () { $(".overlay").fadeIn(200); $(".reminder_c").fadeIn(500); }, 5000);
$(".close").click(function () {
$(this).parent("div").fadeOut(200, function () {
$(".overlay").fadeOut(200);
});
});</pre>
</hear> */
<body>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />
<div class="reminder_c">
<div class="close"></div>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</body>
<pre lang="xml">//________________ cs code _____
<pre lang="cs">protected void Button1_Click(object sender, EventArgs e)
{
}</pre></pre>
//________________
I want to open write code to open button click event in cs code.
Please given me the solution for this problem.