问题:
在view中访问该变量是False,不是字符串,也不是bool类型的false。
解决方法:
controller:
ViewBag.Test = false;
view中得到false值:
@(ViewBag.Test.ToString().ToLower())