我正在尝试使用此代码访问 Web 服务。我还添加了一个带有文本框控件的默认页面,但在运行时只有文本框可见。我还在网络配置中添加了一个具有正确路径的数据库,但它仍然无法正常工作。请帮帮我。我正在尝试从我的机器 IP 地址访问它,但它返回错误。有必要安装吗?
public static List<string> getinfo(string prefixText)
{
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["constr"].ToString());
conn.Open();
SqlCommand cmd = new SqlCommand("select*from raj where firstname like +'%'", conn);
cmd.Parameters.AddWithValue("@firstname", prefixText);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt);
List<string> firstname = new List<string>();
for (int i = 0; i < dt.Rows.Count; i++)
{
firstname.Add(dt.Rows[i][0].ToString());
}
return firstname;
}
运行时它不会返回任何错误。