| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 596 人关注过本帖
标题:不知道怎么解决
只看楼主 加入收藏
guming
Rank: 4
等 级:业余侠客
威 望:5
帖 子:329
专家分:277
注 册:2006-11-9
结帖率:50%
收藏
 问题点数:0 回复次数:5 
不知道怎么解决
.aspx页面在数据更新时经常出现的问题,出现下面的一段提示,不知道怎么解决。。

Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
搜索更多相关主题的帖子: expected purposes security control enabled 
2007-05-26 15:59
guming
Rank: 4
等 级:业余侠客
威 望:5
帖 子:329
专家分:277
注 册:2006-11-9
收藏
得分:0 

不想停留。。。
2007-05-29 18:18
GrimFish
Rank: 1
等 级:新手上路
威 望:1
帖 子:167
专家分:0
注 册:2007-5-28
收藏
得分:0 
<%@ Page EnableEventValidation="true" %>
照着改,在执行更新页面的头上把EnableEventValidation改为true,如果没有就添加这个属性。
2007-05-29 22:19
guming
Rank: 4
等 级:业余侠客
威 望:5
帖 子:329
专家分:277
注 册:2006-11-9
收藏
得分:0 
以前我是加了以上的一句,,可还是照样,,。。特别是在我上传音乐或更新数据表时。。。会出现,可有时还是不会。。

不想停留。。。
2007-05-30 00:21
yunj1105
Rank: 1
等 级:新手上路
威 望:1
帖 子:757
专家分:0
注 册:2007-2-13
收藏
得分:0 

你在Page_Load里加上下面的那个约束
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//你的程序;
}
}


2007-05-30 09:36
guming
Rank: 4
等 级:业余侠客
威 望:5
帖 子:329
专家分:277
注 册:2006-11-9
收藏
得分:0 

应该是视图状态问题,,


不想停留。。。
2007-05-30 10:48
快速回复:不知道怎么解决
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025638 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved