您好,登錄后才能下訂單哦!
使用了KindEditor控件來錄入信息,一直以來都用的好好的!但是今天把網(wǎng)站設(shè)置成了偽靜態(tài)KindEditor的圖片上傳等HTML網(wǎng)頁就顯示不出來了。
經(jīng)過努力尋找,終于找到了解決方法
在web.config的<compilation debug="true"> 加入下面這句話:
- <compilation debug="true">
- <buildProviders>
- <add extension=".html" type="System.Web.Compilation.PageBuildProvider" />
- </buildProviders>
- </compilation>
然后在</compilation>下加入
- <httpHandlers>
- <add verb="*" path="*.html" type="System.Web.UI.PageHandlerFactory"/>
- </httpHandlers>
完整就是:
- <compilation debug="true">
- <buildProviders>
- <add extension=".html" type="System.Web.Compilation.PageBuildProvider" />
- </buildProviders>
- </compilation>
- <httpHandlers>
- <add verb="*" path="*.html" type="System.Web.UI.PageHandlerFactory"/>
- </httpHandlers>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。