我正在使用 MVC,并且正在检查后端(控制器)上的条件。我想在将从后端(控制器)触发的 Jquery 模式框中显示消息。
谁能告诉我如何做到这一点。
我尝试使用以下代码,但这给了我一些信息:无效参数。
string scriptstring = "$(function(){initializedialog();showDialog(\"" + "Please answer to all the Question." + "\");});";
ScriptManager.RegisterStartupScript(this, typeof(Page), "test", scriptstring , true);
你能告诉我如何在 MVC 中使用上述语句吗
谢谢