请教hebingbing!
www.用户名:gaoleigang.密码:860113.你登上,点击“New Topic",看看里面的表格的使用,你预览一下,就知道是什么问题了。麻烦你了。
fckeditor发布版.rar
(1.2 MB)
这里我把我的给你,其中的一些相关设置我已经设置ok了,你删掉一些不需要的文件就可以用了,
using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click1(object sender, EventArgs e) { Label1.Text = FCKeditor1.Value; } }
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www. xmlns="http://www. > <head runat="server"> <title>无标题页</title> </head> <body> <form id="form1" runat="server"> <div> <fckeditorv2:fckeditor id="FCKeditor1" runat="server"></fckeditorv2:fckeditor> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click1" Text="Button" /> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label></div> </form> </body> </html>