作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 jQuery 将文本编辑器的内容从我的 javascript 发布到 asp.net 页面 (asp.net 4.0)。asp.net 页面将接收它并将其保存到 db。我附加查询字符串中文本编辑器的内容。当内容很大时,我收到以下异常
The length of the query string for this request exceeds the configured maxQueryStringLength value.
对于小内容它工作得很好。但是当内容很大时,它会抛出错误
这是我的 JavaScript 代码
var content1 = $("#txtAdminLabelEdit"+id).val();
content = encodeURIComponent(content1);
var url = "handlers/adminhandler.aspx?mode=savecontent&page=home&lid=1&vid=2<xt=" + content;
$.post(url, function (data) {
if (data == "yes") {
//do something
}
});
最佳答案
这是 ASP.net 4.0 吗?如果那么你可以像这样设置maxQueryStringLength
。
<httpRuntime maxRequestPathLength="360" maxQueryStringLength="1024" />
关于asp.net - jQuery 发布到 asp.net 页面错误 : The length of the query string for this request exceeds the configured maxQueryStringLength value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3916660/
我是一名优秀的程序员,十分优秀!