我在 aspx 页面中有一个文本框和一个按钮。我还有一个 gridview 应该列出基于存储过程的结果。
这是我的 C# 代码示例
private void GetList(string EmployeeName)
String strConnString = ConfigurationManager.ConnectionStrings["conString"].ConnectionString;
SqlConnection con = new SqlConnection(strConnString);
SqlCommand cmd = new SqlCommand();
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "GetEmployeeDetailsByName";
cmd.Parameters.Add("@EmployeeName", SqlDbType.Text).Value = txtName.Text.Trim();
cmd.Connection = con;
try
{
con.Open();
GridView1.EmptyDataText = "No Records Found";
GridView1.DataSource = cmd.ExecuteReader();
GridView1.DataBind();
}
catch (Exception ex)
{
throw ex;
}
finally
{
con.Close();
con.Dispose();
}
现在我在 button_click 事件中添加了以下内容
GetList();
它给了我“方法没有重载......”错误。
如何确保搜索文本框中的任何用户类型都传递到GetList(**HERE**)
.cs 文件中?