如何在静态方法中访问下拉列表

本文关键字:访问 下拉列表 静态方法 | 更新日期: 2023-09-27 18:10:50

我有以下静态方法:

public static List<string> GetAutoCompleteData(string StudentId)
    {
            List<string> result = new List<string>();
            using (SqlConnection con = new SqlConnection("Data Source=.;Integrated Security=true;Initial Catalog=SMS"))
            {
                //using (SqlCommand cmd = new SqlCommand("select  StudentId,StudentName from tblStudent where StudentId LIKE '%'+@SearchText+'%'", con))
                using (SqlCommand cmd = new SqlCommand("select  T1.StudentName,T1.StudentId from tblStudent T1 where StudentId LIKE '%'+@SearchText+'%' except  select T2.StudentName, T2.StudentId from tblStudentAcademics T2 where T2.AcademicYear='" +Dropdownvalue + "'", con))
                {
                    con.Open();
                    cmd.Parameters.AddWithValue("@SearchText", StudentId);
                    SqlDataReader dr = cmd.ExecuteReader();
                    while (dr.Read())
                    {
                        result.Add(dr["StudentId"].ToString() + "-" + dr["StudentName"].ToString());
                    }
                    return result;
                }
        }
    }

我需要写ddlacademic .selectedvalue.tostring()来代替Dropdownvalue。帮我

如何在静态方法中访问下拉列表

下拉列表对象是类(Web Page)的非静态成员,并且静态方法不能访问非静态成员。当你调用静态方法时,将dropdownList的值传递给它。

静态成员

静态方法和属性不能访问非静态字段和事件在其包含类型中,并且它们不能访问实例变量,除非在方法中显式传递参数。

静态方法定义

public static List GetAutoCompleteData(string StudentId, string dropdownvalue ) {
  //Your code
}

静态方法调用

StaticMethodClass.GetAutoCompleteData("studendId", dropdown.SelectedValue);