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
raj kadam
NA
92
7.5k
how to change the textboxmode property on checkbox click ?
Feb 18 2015 5:21 AM
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
if (IsPostBack)
{
txtCl.Text = TextBoxMode.SingleLine;
}
else
{
txtCl.TextMode = TextBoxMode.Password;
}
}
but it doesnt work..
Reply
Answers (
1
)
How To Sum Value Of Gridview Column In C#.net (Win App)
How to compress JSON DATA.