我正在使用 FormView 向 sql server 添加新数据。我尝试更改用户插入的一些数据,例如将“a”替换为“A”
我尝试使用以下代码:
protected void FormViewInsertEventHandler(object sender, SqlDataSourceCommandEventArgs e)
{
e.Values["Institution_fax"] = "33333";
}
和
<asp:SqlDataSource ID="SqlDataSourceSP" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString1 %>"
InsertCommand="usp_limodimInstitution_insert"
InsertCommandType="StoredProcedure"
SelectCommand="select * from tbl_limodim_Institution">
但我收到以下错误
'FormViewInsertEventHandler' 没有重载匹配委托 'System.Web.UI.WebControls.FormViewInsertEventHandler'
我错过了什么?