非静态字段、方法或属性“system_userInfo.TextBox1”要求对象引用”
[System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()]public static string[] GetCityList(string prefixText, int count, string contextKey)
{
string strState = TextBox1.Text;//????
此处需要从页面上的一个TextBox1取值,不知道怎么写?报错“非静态字段、方法或属性“system_userInfo.TextBox1”要求对象引用”。
//获取自动完成的选项数据
List<string> list = new List<string>();
string sql = string.Format("select top {0} name from t_b_xzqh where right(codeno,2)='00' and (name like '%{1}%' or dbo.f_GetPy(name) like '%{1}%')order by codeno", count, prefixText);
var dr = SQLBase.ExecuteReader(sql);
while (dr.Read())
{
list.Add(dr[0].ToString());
}
return list.ToArray();
}