我正在使用 Ajax.BeginForm 开发 MVC 2,如下所示。
<script type="text/javascript" language="javascript">
function ProcessResult(responsedContent) {
var response = responsedContent.get_response();
var result = response.get_object();
alert(result);
}
</script>
<%using(Ajax.BeginForm("Test","Home", new AjaxOptions{ OnComplete = "ProcessResult"}))
{%>
<input type="text" id="txtTest" name="txtTest" /> <input id="submitTest" type="submit" value="Submit" tabindex="3"/>
<%}%>
public JsonResult Test(string txtTest)
{
return Json(txtTest);
}
您能否指导我如何处理用户在文本框 txtTest 中输入 的情况?非常感谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web
技术交流群。
我正在使用 Ajax.BeginForm 开发 MVC 2,如下所示。
<script type="text/javascript" language="javascript">
function ProcessResult(responsedContent) {
var response = responsedContent.get_response();
var result = response.get_object();
alert(result);
}
</script>
<%using(Ajax.BeginForm("Test","Home", new AjaxOptions{ OnComplete = "ProcessResult"}))
{%>
<input type="text" id="txtTest" name="txtTest" /> <input id="submitTest" type="submit" value="Submit" tabindex="3"/>
<%}%>
public JsonResult Test(string txtTest)
{
return Json(txtTest);
}
您能否指导我如何处理用户在文本框 txtTest 中输入
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 装饰要发布到的控制器操作
[ValidateInput]
属性:此外,如果您的应用程序是针对 .NET 4.0 编译的,您可能需要在 web.config 中添加以下内容:
You could try decorating the controller action you are posting to with the
[ValidateInput]
attribute:Also if your application is compiled against .NET 4.0 you might need to add the following in your web.config: