Server Error in '/' Application.

在我登陆一个网站的BBS时,弹出以下错误信息,还请,各位大大帮忙解决一下。
。。。。一定要给我个具体的解决方案。。。。。目前我还看不懂这个代码的意思。
Server Error in '/' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0019: Operator '!=' cannot be applied to operands of type 'string[]' and 'string'

Source Error:

Line 253:
Line 254:
Line 255: if (pagewordad!="")
Line 256: {
Line 257:

Source File: e:\DizACE\aspx\1\forumindex.aspx Line: 255
最新回答
ぃ伊丽莎白鼠

2025-03-31 00:59:25

这是页面的显示代码出问题了。大致是说编译出错,位置是根目录,也就是“/”表示的位置。发生的错误是操作符'!='不能被用作字符串数组和字符串(String[]和String)这两种类型。错误号为CS0019
前面有个提示:让你检查你的资源代码是不是正确或者资源代码的位置是否有改变。
多数是网站在进行维护~数据资源在更换,过一段时间应该会好的。你等不及的话去问问网站的管理员吧~
——来自佳家网的天火
给十年后的我

2025-03-31 02:46:40

就是说!=这个判断 不能用来对String数组和String进行判断

解决方案就是改代码 让判断类型匹配