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
Bassem
NA
20
6.6k
checkbox Server Control OnCheckedChanged
Mar 8 2011 6:15 AM
hello , i have this code and it run perfectly with input checkbox html contol
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<script language="javascript" type="text/javascript" >
function chvisible(controlId)
{
var control = document.getElementById(controlId);
if(control.style.display == "none" || control.style.display == "")
control.style.display = "block";
control.body.text="";
else
control.style.display = "none";
}
</script>
<asp:TextBox ID="TextBox1" runat="server" Style="display: none"></asp:TextBox>
<input id="Checkbox1" type="checkbox" onclick="chvisible('<%=TextBox1.ClientID %>');"/>
</asp:Content>
when i change the <input > to CheckBox
what i will write instead of "chvisible('<%=TextBox1.ClientID %>');"
in onCheckedChanged Event ?????
checkbox serverside control doesnt hava onclick event
when i try to write this following , it dont run
<asp:CheckBox ID="CheckBox2" runat="server" OnCheckedChanged="chvisible('<%=TextBox1.ClientID %>');" />
Reply
Answers (
14
)
How to restart global.asax page automatically.
Runttime Generate Textbox