Questions tagged «argumentexception»

30
无效的回发或回调参数。使用'<pages enableEventValidation =“ true” />'启用事件验证
当我从客户端发回页面时,出现以下错误。我有修改客户端的asp:ListBox的JavaScript代码。 我们该如何解决? 错误详情如下: Server Error in '/XXX' Application. -------------------------------------------------------------------------------- Invalid postback or callback argument. Event validation is enabled using &lt;pages enableEventValidation="true"/&gt; in configuration or &lt;%@ Page EnableEventValidation="true" %&gt; in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that …

5
如何检查数据表中是否存在列
我有一个用csv文件的内容生成的datable。我使用其他信息将csv的某些列(现在在数据表中)映射到要求用户填写的信息。 在最好的情况下,映射始终是可能的。但这不是现实。因此,在尝试映射数据表列值之前,我需要检查该列是否存在。如果不执行此检查,则会收到ArgumentException。 当然,我可以使用类似以下代码的代码进行检查: try { //try to map here. } catch (ArgumentException) { } 但我现在有3列要映射,有些或全部可能存在/缺失 有没有一种好的方法来检查数据表中是否存在列?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.