我试图检查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中不存在此值。
有人可以在这里帮助我吗?