FineUI 官方论坛
标题:
帮我看看这是什么问题
[打印本页]
作者:
稀里哗啦
时间:
2014-8-7 13:47
标题:
帮我看看这是什么问题
[attach]6173[/attach]
部署了以后就报这个问题了 谁给看看
作者:
稀里哗啦
时间:
2014-8-7 13:48
在SERVER 2008下的问题 64位 win7上没事
作者:
sanshi
时间:
2014-8-7 14:25
看样子是从 字符串 到 枚举类型的 转化失败,是不是从Cookie中读取Language 或者 Theme 时出错的。
建议加个 try - catch 的保护,官网示例这个地方做的就不好,下个版本会加上保护:
HttpCookie themeCookie = Request.Cookies["Theme_Pro"];
if (themeCookie != null)
{
string themeValue = themeCookie.Value;
pm.Theme = (Theme)Enum.Parse(typeof(Theme), themeValue, true);
}
复制代码
作者:
稀里哗啦
时间:
2014-8-8 07:27
sanshi 发表于 2014-8-7 14:25
看样子是从 字符串 到 枚举类型的 转化失败,是不是从Cookie中读取Language 或者 Theme 时出错的。
建议加 ...
谢谢大神指点
欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/)
Powered by Discuz! X3.4