我需要从static[webmethod]
. 它没有被调用,我使用断点对其进行了测试。我试图通过为类创建一个实例来调用它。这就是我正在尝试的。
[WebMethod]
public static string get_runtime_values(string get_ajax_answer_title,string get_ajax_answer_des)
{
if (get_ajax_answer_title.Equals("") && (get_ajax_answer_title.Equals("")))
{
return "null";
}
else
{
int got_question_id = getting_question_id;
DataHandler.breg obj = new DataHandler.breg();
obj.add_anwers(got_question_id, get_ajax_answer_title, get_ajax_answer_des);
return "inserted";
}
querystring object_new = new querystring();
object_new.show();
}
querystring 是此处类的名称。控件将根据输入进入 if 和 else 语句,但之后它直接跳出。此外,当我将鼠标悬停在 querystring 上时,它说
Unreachable code detected.
我应该怎么做才能让它工作?