No Change for Index of DropDownList in a Custom Control!!!

Posted by mahdiahmadirad on Stack Overflow See other posts from Stack Overflow or by mahdiahmadirad
Published on 2010-06-15T22:45:48Z Indexed on 2010/06/15 22:52 UTC
Read the original article Hit count: 157

Hi Dears,
I have Created A Custom Control which is a DropDownList with specified Items. I designed AutoPostback and SelectedCategoryId as Properties and SelectedIndexChanged as Event for My Custom Control.
Here Is My ASCX file Behind Code:

private int _selectedCategoryId;

private bool _autoPostback = false;

public event EventHandler SelectedIndexChanged;

public void BindData()
{
    //Some Code...
}

protected void Page_Load(object sender, EventArgs e)
{
    BindData();
    DropDownList1.AutoPostBack = this._autoPostback;
}

public int SelectedCategoryId
{
    get
    {
        return int.Parse(this.DropDownList1.SelectedItem.Value);
    }
    set
    {
        this._selectedCategoryId = value;
    }
}

public string AutoPostback
{
    get
    {
        return this.DropDownList1.AutoPostBack.ToString();
    }
    set
    {
        this._autoPostback = Convert.ToBoolean(value);
    }
}

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
    if (SelectedIndexChanged != null)
        SelectedIndexChanged(this, EventArgs.Empty);
}

I Want Used Update Panel to Update Textbox Fields According to dorp down list selected index.
this is my code in ASPX page:

<asp:Panel ID="PanelCategory" runat="server">
    <p>
        Select Product Category:&nbsp;
        <myCtrl:CategoryDDL ID="CategoryDDL1" AutoPostback="true" OnSelectedIndexChanged="CategoryIndexChanged"
            SelectedCategoryId="0" runat="server" />
    </p>
    <hr />
</asp:Panel>
<asp:UpdatePanel ID="UpdatePanelEdit" runat="server">
    <ContentTemplate>
        <%--Some TextBoxes and Other Controls--%>
    </ContentTemplate>
    <Triggers>
        <asp:PostBackTrigger ControlID="CategoryDDL1" />
    </Triggers>
</asp:UpdatePanel>

But Always The Selected Index of CategoryDDL1 is 0(Like default). this means Only Zero Value will pass to the event to update textboxes Data. what is the wrong with my code? why the selected Index not Changing? Help?

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET