K
K Viltersten
The following works fine doing exactly what is supposed.
<asp:LinkButton
id="id" runat="server" Text="Text">
</asp:LinkButton>
If i change it to the following, the callback method doesn't do what it
should. In fact, as far i can see, it's not even called since the break
point doesn't kick in!
<asp:Button
id="id" runat="server" Text="Text">
</asp:Button>
Where can i have missed something?
<asp:LinkButton
id="id" runat="server" Text="Text">
</asp:LinkButton>
If i change it to the following, the callback method doesn't do what it
should. In fact, as far i can see, it's not even called since the break
point doesn't kick in!
<asp:Button
id="id" runat="server" Text="Text">
</asp:Button>
Where can i have missed something?