当前位置: 代码迷 >> ASP.NET >> FCKeditor使用有关问题
  详细解决方案

FCKeditor使用有关问题

热度:2943   发布时间:2013-02-25 00:00:00.0
FCKeditor使用问题
编译器错误信息:   CS0234:   类型或命名空间名称“WebForm1”在类或命名空间“FredCK.FCKeditorV2.FCKeditor”中不存在(是否缺少程序集引用?)

源错误:

 

行   33:          
行   34:           [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
行   35:           public   class   WebForm1_aspx   :   FCKeditor.WebForm1,   System.Web.SessionState.IRequiresSessionState   {
行   36:                  
行   37:
 


------解决方案--------------------------------------------------------
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace FCKeditor
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected FredCK.FCKeditorV2.FCKeditor FCKeditor1;

private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
}

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion
}
}
  相关解决方案