我们有一个使用SqlDataSource.UpdateCommand
自动更新的radgrid。因此,当我们编辑某些列并点击"更新"表格在标记中使用UpdateCommand
正确更新。
它看起来像这样:
<telerik:RadGrid ID="RadGrid" DataSourceID="SqlDataSource1" runat="server" AllowAutomaticUpdates="true" >
<MasterTableView AutoGenerateColumns="False" DataKeyNames="City" CommandItemDisplay="Top" AllowAutomaticUpdates="true">
<Columns>
<telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn">
</telerik:GridEditCommandColumn>
<telerik:GridBoundColumn DataField="City" HeaderText="City" ReadOnly="True" SortExpression="City"
UniqueName="City" >
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Prefix" HeaderText="Prefix" UniqueName="Prefix">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="sector" HeaderText="sector" UniqueName="sector">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
<asp:SqlDataSource ID="SqlDataSource1" ConnectionString="<%$ ConnectionStrings:RF-PRConnectionString %>"
SelectCommand="SELECT STATEMENT" runat="server"
UpdateCommand= "UPDATE STATEMENT">
<UpdateParameters>
<asp:Parameter Name="Name" Type="String" />
<asp:Parameter Name="sector" Type="String" />
</UpdateParameters>
</asp:SqlDataSource>
但是,让我们说更新会在表中生成异常(即尝试使用varchar更新Int,违反某些键等)。我有什么办法可以Try...Catch
添加SqlDataSource.UpdateCommand
吗?我不知道怎么做,因为更新后面没有代码,所有内容都是通过SqlDataSource
完成的。
答案 0 :(得分:6)
非常简单的解决方案:我需要处理OnRowUpdated
事件。
protected void GridView_RowUpdated(object sender, GridViewUpdatedEventArgs e)
{
if (e.Exception != null)
{
//show error message
e.ExceptionHandled = true;
}
}