ASP.NET動態網站開發培訓-26.線上編輯器FreeTextBox的使用

人生不再重來發表於2014-11-16

第二十六講:線上編輯器FreeTextBox的使用


課程安排:

線上編輯器FreeTextBox簡介

將FreeTextBox加入到專案

從FreeTextBox將資料匯出

將輸入匯入到FreeTextBox


線上編輯器FreeTextBox簡介

富文字編輯器。(Rich TextBox)

通過FreeTextBox,可以編輯圖文並茂的文章,並將其匯出到資料庫。也可以從資料庫中存放的內容,匯入到FreeTextBox內顯示出來。

使用FreeTextBo就像使用Word一樣簡單、便捷。可以使用在留言板、新聞系統、論文系統、論壇等Web系統。


將FreeTextBox加入到專案

1.開啟專案,新增引用。(引用dll檔案)

2.拷貝ftb.imagegallery.aspx到你要使用FreeTextBox的頁面的當前目錄下(當然可以是其他,但是可能要設定路徑。)

  拷貝FTB目錄下的aspnet_client的資料夾及內容到網站根目錄

3.將FreeTextBox新增到工具欄。

方法: 工具|常規|選擇項—>瀏覽到DLL檔案—>新增

4.將工具欄上的控制元件拖入到頁面


之後在引用控制元件的頁面設計檢視,FreeTextBox原始碼標記替換為下方程式碼


ToolbarLayout="ParagraphMenu,FontFacesMenu,FontSizesMenu,FontForeColorsMenu|Bold,Italic,Underline,Strikethrough;Superscript,RemoveFormat|JustifyLeft,JustifyRight,JustifyCenter,JustifyFull;BulletedList,NumberedList,Indent,Outdent;CreateLink,Unlink,InsertImage,InsertImageFromGallery,InserRule|Cut,Copy,Paste;Undo,Redo,Print"
Language="zh-CN">


從FreeTextBox將資料匯出

label1.text=FreeTextbox1.text;


將輸入匯入到FreeTextBox

FreeTextbox1.text=Label1.text;


【轉】FreeTextBox的詳細用法:http://www.cnblogs.com/freeliver54/archive/2007/01/08/614626.html


相關文章