0

我试图检查ViewBag中的值是否存在JQuery

if("<%: ViewBag.isSearchEnabled %>" != null && "<%: ViewBag.isSearchEnabled %>" != "True")
        {
        $("#CompanySearchPanel").hide();
        }  

这应该按照这个工作,但它给出了以下错误:

The call is ambiguous between the following methods or properties: 'System.IO.TextWriter.Write(string, params object[])' and 'System.IO.TextWriter.Write(char[])'  

仅供参考, ViewBag中不存在此值。

有人可以在这里帮助我吗?

4

1 回答 1

0

我刚刚找到这个链接,其中提到类型转换是解决方案。不知道需要类型转换。我刚做了这个,它正在工作。

请建议这是否是正确的原因。

于 2012-12-26T10:23:03.790 回答