B
brock wade
I have a Datagrid with the following code:
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" CommandArgument='<%# Eval("id") %>'
runat="server" OnClick="LinkButton1_Click">Details</
asp:LinkButton>Details</asp:LinkButton>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
I'm getting this error message:
Compiler Error Message: BC30456: 'LinkButton1_Click' is not a member
of 'ASP.MainDepartment_aspx'.
Everything looks k in the design view.
What are some places I should think of looking? BTW I'm using .NET 1.1
Thanks!!!
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" CommandArgument='<%# Eval("id") %>'
runat="server" OnClick="LinkButton1_Click">Details</
asp:LinkButton>Details</asp:LinkButton>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
I'm getting this error message:
Compiler Error Message: BC30456: 'LinkButton1_Click' is not a member
of 'ASP.MainDepartment_aspx'.
Everything looks k in the design view.
What are some places I should think of looking? BTW I'm using .NET 1.1
Thanks!!!