ViewBagの値が存在するかどうかを確認しようとしていますJQuery
:
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には存在しません。
誰かがここで私を助けることができますか?