Am I missing the obvious? I think this error is complaining about a method that I have in my C# code behind? Can someone help me overcome this please?
Error Message
Compiler Error Message: CS1061: 'ASP.pages_broccolitest_aspx' does not contain a definition for 'ddlcantouchit_SelectedIndexChanged'
and no extension method 'ddlcantouchit_SelectedIndexChanged' accepting a first argument of type 'ASP.pages_broccolitest_aspx'
could be found (are you missing a using directive or an assembly reference?)
Page Markup
<asp:DropDownList runat="server" ID="ddlcantouchit" CssClass="DropDownLists"
OnSelectedIndexChanged="ddlcantouchit_SelectedIndexChanged" AutoPostBack="true">
</asp:DropDownList>
Code Behind...
//Is this not what it is complaining about not being their?
protected void ddlcantouchit_SelectedIndexChanged(object sender, EventArgs e)
{
MethodManMa ...
Go to the complete details ...