Hi All,
I am try to update the formview contents by clicking the update link inside a formview but for some reason, the update command doesn't fire. This is the first time I have this problem. The fields inside the formview are bounding to the sqldatasource. I have
no clue what the problem is. Below is my .aspx page code.
<asp:FormView ID="FormView1" runat="server" DataSourceID="SqlDataSource1" DataKeyNames="id" DefaultMode="Edit">
<EditItemTemplate>
<asp:LinkButton ID="UpdateButton" runat="server" CausesValidation="True"
CommandName="Update" Text="Update" />
<asp:LinkButton ID="UpdateCancelButton" runat="server"
CausesValidation="False" CommandName="Cancel ...
Go to the complete details ...