关于url重写的问题,请不吝赐教……

我是按照这个博客里面的方法学习的……

http://www.cnblogs.com/wu-jian/archive/2011/01/06/1927089.html

问题出现在,这篇文章里源码分析下的第二个类

 /// <summary>
        /// 该方法从web.config中读取规则集合,并使用了Cache以避免频繁IO操作
        /// </summary>
        /// <returns></returns>
        public static RewriterConfiguration GetConfig()
        {
            //使用缓存
            if (HttpContext.Current.Cache["RewriterConfig"] == null)
                HttpContext.Current.Cache.Insert("RewriterConfig", ConfigurationManager.GetSection("RewriterConfig"));

            return (RewriterConfiguration)HttpContext.Current.Cache["RewriterConfig"];
        }

绿色的问题语句,在我这里报错为,

无法将类型为“System.Configuration.ConfigXmlElement”的对象强制转换为类型“HttpUrlRewiter.RewriterConfiguration”。

到底怎么个改法呢?在线等…………


喵喵时光机
浏览 652回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP