Updatepanel提供Web请求管理器错误

时间:2011-01-12 04:25:19

标签: c# asp.net updatepanel

我在我的wep页面中使用了radiolist控件。并且该网页中有3个更新面板。每个更新面板都包含一个列表框。所有3个更新面板都有一个AsyncPostBackTrigger(radiolist index change event)。

我的问题是我随机收到错误

   Sys.WebForms.PageRequestManagerServerErrorException: Input string was not in a correct format. 

任何想法??

1 个答案:

答案 0 :(得分:1)

我猜你在内部为整数数据类型分配一个字符串值。在这种情况下,您必须使用TryParse方法。请在下面找到可能对您有帮助的代码段

int integerValue= 0;

int.TryParse(value, out integerValue);

希望这可以解决您的问题。