2

我在我的网络表单上的按钮单击事件中定义了以下代码。代码在我第一次单击按钮时正确执行。额外的点击应该会为我的数据库添加更多的值,但在这种情况下,在第一次回发之后,点击事件不会触发。

当我离开页面并返回时,我可以在列表中再添加一个名称,但随后的点击仍然不起作用。我被这个难住了……没有在页面上抛出任何 Javascript 错误(这是我想到的第一件事)

if (!String.IsNullOrEmpty(tbSuggestedSupplier_Add.Text))
{
   SqlCommand cmd = new SqlCommand("pSuggestedSupplier_AddNew", dbConnection);
   cmd.CommandType = CommandType.StoredProcedure;
   cmd.Parameters.Clear();
   cmd.Parameters.Add("@NewSupplierRequestID", SqlDbType.Int);
   cmd.Parameters.Add("@SupplierName", SqlDbType.VarChar, (500));
   //cmd.Parameters.Add("@SupplierTypeID");

   cmd.Parameters["@NewSupplierRequestID"].Value = Session["NewSupplierRequestID"];
   cmd.Parameters["@SupplierName"].Value = tbSuggestedSupplier_Add.Text;
   functions.NewSupplierRequest.Open();

   try
   {
      cmd.ExecuteNonQuery();
      gvSuggestedSuppliers.DataBind();
      tbSuggestedSupplier_Add.Text = string.Empty;
   }

   catch (Exception err)
   {
      this.lblError.Text = err.Message;
   }

   finally
   {
      functions.NewSupplierRequest.Close();
   }
}
4

2 回答 2

4

如果有问题的 Button 是动态创建的,请确保在每次回发时重新附加 Click 事件处理程序。听起来这可能是问题所在。

最好的方法是在 Page 的PreInit 事件中创建 Button 控件,并在其中附加事件处理程序。这样它就是你的 ViewState 的一部分,页面生命周期中的后续事件会知道它。

Page_PreInit(Object sender, EventArgs e)
{
    Button yourBtn = new Button();
    // Set your other properties
    yourBtn.Click += yourEventHandlerName;
    // Add the control to the controls collection of whatever container it belongs in
    yourContainer.Controls.Add(yourBtn);
}
于 2013-04-12T16:46:28.510 回答
4

通过将 CausesValidation="False" 添加到此特定按钮来解决问题。

于 2013-04-12T17:32:50.853 回答