<configSections> <section name="FineUI" type="FineUI.ConfigSection, FineUI"/></configSections><pages> <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>
这些我都配置了。我下载的4.1.5版本。我引用了FineUI.ddl和Newtonsoft.Json.dll3.5的。但是我一拉控件到页面。就显示不了。也不知道具体什么错误。是不是我项目和FineUI冲突了呢。具体我是少了哪一步呢?求答案
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="workplan.aspx.cs" Inherits="whir_system_ModuleMark_fineui_workplan" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link href="extjs/res/ext-theme-neptune/all.css" rel="stylesheet" type="text/css" />
<link href="extjs/res/css/ux.css" rel="stylesheet" type="text/css" />
<script src="extjs/ext-part1.js" type="text/javascript"></script>
<script src="extjs/ext-part2.js" type="text/javascript"></script>
<script src="extjs/ext-theme-neptune.js" type="text/javascript"></script>
<script src="extjs/lang/zh_CN.js" type="text/javascript"></script>
</head>
<body>
<form id="form1" runat="server">
<fageManager runat="server" />
<f:Button runat="server" Text="Button" />
</form>
</body>
</html>
|