我有一个显示“Select
”的下拉列表,我想使用c#在我的代码后面的文件中插入一个事件处理程序。因此,当在下拉列表中选择“Select
”时,它将在网页上显示警告消息。
Curretnly我有:
protected void UpdateEmployeeBTN_Click(object sender, EventArgs e) { if (DropDownListEmployee.SelectedValue == "Select") { Response.Write("warning"); return false; } update code... }
我收到return语句的错误/警告消息:“returns void
,返回关键字后面不能跟对象表达式”。
答案 0 :(得分:2)
问题在于:
return false;
您的事件处理程序被声明为void - 您无法返回bool
。只需return;
答案 1 :(得分:1)
您无法从void
方法返回值。将您的陈述更改为return;