I've tried everything I can think of and for some reason, my little gridview with an update just will NOT update the data in the sql. I think my problem is in the .aspx, because if I execute the stored procedure directly in sql, it updates fine. Does
anything jump out at you as to why the inline editing won't update my database via the sqldatasource?
Here's my gridview
<asp:GridView ID="gvItems" runat="server" AllowSorting="True" AutoGenerateColumns="False" DataSourceID="dsGetResults"
DataKeyNames="BudgetRequestDetailsID,pcode,delcode">
<Columns>
<asp:CommandField ShowEditButton="True" />
<asp:BoundField DataField="DescriptionOfActivity" HeaderText="Description"
...
Go to the complete details ...