forum

Home / DeveloperSection / Forums / check box not working properly at page load in asp.net

check box not working properly at page load in asp.net

E E Cummings 5248 15-Jul-2013
Hi Developers!

I have got problem with check-box to enable corresponding control next to it. My Requirement is at the page load we want to disable the all textboxes and dropdownlists by using checkbox if the check-box is checked the control next to that check-box will be enabled for that i have done like this....

at page load

i have written like this

    protected void Page_Load(object sender, EventArgs e)

    {
        if (!Page.IsPostBack)
        {
            ChckOrdType.Checked = false;
            ChkPlntPric.Checked = false;
            ChkExcluBro.Checked = false;
            ......
            .....
        }

and then in checkbox check changed event i have written like this

   protected void ChckOrdType_CheckChanged(object sender, EventArgs e)

    {
        if (ChckOrdType.Checked)
            ddlOrdType.Enabled = true;
        else
            ddlOrdType.Enabled = false;
    }

    protected void chkPlntPric_CheckChanged(object sender, EventArgs e)
    {
        if (ChkPlntPric.Checked)
            ddlPlntPric.Enabled = true;
        else
            ddlPlntPric.Enabled = false;
    }

    protected void chkExcluBro_CheckChanged(object sender, EventArgs e)
    {
        if (ChkExcluBro.Checked)
            ddlExcluBroker.Enabled = true;
        else
            ddlExcluBroker.Enabled = false;
    }

but results is like this ... I am getting checkbox not checked and control next to it is enabled...But this not what i want

My results is if the check-box is not checked the control next to it is disabled would any one pls help on this...

Thanks In advance......


Updated on 15-Jul-2013

Can you answer this question?


Answer

1 Answers

Liked By