VS2013下.Net Framework4配置FineUI4.14
阿新 • • 發佈:2019-01-28
配置步驟:
- 工具箱:空白處右鍵--選項卡--瀏覽,選擇FineUI.dll配置web.config,管道模式設定為:傳統
- 配置web.config
- 在form表單下新增:
<f:PageManager ID="PageManager1" runat="server" /> //忘記回出現錯誤:System.NullReferenceException:未將物件引用設定到物件的例項。
4. 新增引用using FineUI;
<?xml version="1.0"?> <!-- 有關如何配置 ASP.NET 應用程式的詳細資訊,請訪問 http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <span style="background-color: rgb(255, 0, 0);"> <span style="color:#ff6666;"><configSections> <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false"/> </configSections> <FineUI DebugMode="false"/></span></span> <appSettings/> <connectionStrings/> <system.web> <span style="color:#ff0000;"><pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID"> <controls> <add assembly="FineUI" namespace="FineUI" tagPrefix="f"/> </controls> </pages> <httpModules> <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/> </httpModules> <httpHandlers> <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI" validate="false"/> </httpHandlers> <httpRuntime maxRequestLength="102400 "/> <customErrors mode="Off"/></span> <compilation debug="true" targetFramework="4.0"> <assemblies> <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> </assemblies> </compilation> </system.web> </configuration>
配置過程中出現的錯誤: