我尝试检查JQuery
中是否存在 ViewBag 中的值:
if("<%: ViewBag.isSearchEnabled %>" != null && "<%: ViewBag.isSearchEnabled %>" != "True")
{
$("#CompanySearchPanel").hide();
}
这应该根据this工作,但它会出现以下错误:
The call is ambiguous between the following methods or properties: 'System.IO.TextWriter.Write(string, params object[])' and 'System.IO.TextWriter.Write(char[])'
仅供参考, ViewBag 中不存在此值。
有人可以帮助我吗?