TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Nilesh Gujar
NA
3
7.4k
Open div jquery on buttion click event cs code in asp.net
Jul 2 2013 1:34 AM
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.
Reply
Answers (
1
)
checkbox checked item not showing in UserControl
dynamically creating HTML tables from code behind in asp.net