View Single Post
Old 07-05-2012, 08:07 PM   PM User | #2
alykins
Senior Coder

 
alykins's Avatar
 
Join Date: Apr 2011
Posts: 1,608
Thanks: 37
Thanked 183 Times in 182 Posts
alykins will become famous soon enough
not really clear what the issue is (or at least I am not understanding it)... but you may find luck changing the code behind to this...
Code:
protected void RegisterCheckBox_CheckedChanged(object sender, EventArgs e)
{
    if(!IsPostBack)
    {
        CreateUserButton.Visible = RegisterCheckBox.Checked;
        CreateUserButtonDisable.Visible = !RegisterCheckBox.Checked;
        CreateUserButton.Enabled = CreateUserButton.Visible;
        CreateUserButtonDisable.Enabled = false;
    }
}
__________________

I code C hash-tag .Net
Reference: W3C W3CWiki .Net Lib
Validate: html CSS
Debug: Chrome FireFox IE
alykins is offline   Reply With Quote
Users who have thanked alykins for this post:
jay4 (07-05-2012)