Posted on: 1/31/2014 7:48:39 PM | Views : 683

For some reason my code will not update in the datagrid view....any ideas?
<asp:SqlDataSource ID="SqlChart" runat="server" ConnectionString="<%$ ConnectionStrings:HRTimeoff %>" ProviderName="<%$ ConnectionStrings:HRTimeoff.ProviderName %>" SelectCommand="SELECT [NAMES], [vacAccrued], [vacUsed], [vacBalance], [perAccrued], [perUsed], [perBalance], [totalBalance], [Sick], [other] FROM [EMPLOYEES] WHERE ([NAMES] = ?)" DeleteCommand="DELETE FROM [EMPLOYEES] WHERE [NAMES] = ?" InsertCommand="INSERT INTO [EMPLOYEES] ([NAMES], [vacAccrued], [vacUsed], [vacBalance], [perAccrued], [perUsed], [perBalance], [totalBalance], [Sick], [other]) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" ...

Go to the complete details ...