VS使用fckeditor
发布网友
发布时间:2022-04-22 06:06
我来回答
共2个回答
热心网友
时间:2022-04-22 07:35
1.
在下载的文件中包含控件的源代码和一个已经编译好的文件("FredCK.FCKeditorV2.dll")。需要在你的项目中引用编译好的DLL文件,引用有2个方法:
手动复制FredCK.FCKeditorV2.dll 文件到你网站的"bin"目录
在你的Visual Studio.Net项目中按右键并选择“添加引用” ,从你保存FredCK.FCKeditorV2.dll 文件的地方选择他。
你也可以直接在Visual Studio.Net工具箱中包含这个控件,在工具箱中右键,选择“添加项”,然后,选择FredCK.FCKeditorV2.dll 。
确保你已经有了最新的DLL文件版本。
2.
现在就可以在你的网站上使用他了,新建一个ASP.Net页面,在页面上创建一个实例,有2个方法:
把控件从工具箱中拖到你的页面(如果你已经在“第二步”中把他加到你的工具箱)
在你的ASP.Net页面顶部包含以下代码:
<%@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
并且在<FORM runat="server">中添加控件的标签:
<FCKeditorV2:FCKeditor id="FCKeditor1" BasePath="~/FCKeditor/" runat="server" />
注意: BasePath 属性所指定的目录就是FCKeditor 所在的目录
全部代码如下
<%@ Page ValidateRequest="false" Language="VB" AutoEventWireup="false" %>
<%@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
<html>
<head>
<title>FCKeditor - Sample</title>
< http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form runat="server">
<FCKeditorV2:FCKeditor id="FCKeditor1" BasePath="~/FCKeditor/" runat="server" />
<br />
<input type="submit" ="Submit" runat="server" />
</form>
</body>
</html>