熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

.net控件FreeTextBox使用方法

2022-06-13   來源: .NET編程 

  先把freetextboxdll添加到項目中

  ftbcolorpickeraspx

  ftbimagegalleryaspx

  ftbinserttableaspx

  從文件夾HelperScripts復制出來放到外面與testaspx(測試)同等級目錄(不這麼做插入背景色圖片表格就不好使)

  把images文件夾放到testaspx(測試)同等級目錄下來存放上傳的圖片

  在testaspx中加圖片的路徑

  thisFreeTextBoxText這個就是FTB中你輸入的文本的內容這是帶HTML標記的

  thisFreeTextBoxHtmlStrippedText這個是將HTML標記去掉的文本

  寫入數據庫

  在CSDN上看到朋友們說怎麼把FreeTextBox內容寫入數據庫中就是把所有產生的HTML代碼都插入數據庫的一個字段中可以做一個新聞表

  news

  字段ID(自增)contentaddtime(getdate)
  privatevoidPage_Load(objectsenderSystemEventArgse)
  {
   //Putusercodetoinitializethepagehere
   if(!IsPostBack)
   {
    SqlConnectionmyConn=newSqlConnection(server=(local)database=mmuid=sapwd=)
    SqlCommandmyCmd=newSqlCommand(select*fromtestwhereid=myConn)
    myConnOpen()
    SqlDataReadermyDr
    myDr=myCmdExecuteReader()
    myDrRead()
    ResponseWrite(myDr[content]ToString())
    myDrClose()
    myConnClose()
   }
  }
  privatevoidButton_Click(objectsenderSystemEventArgse)
  {
   SqlConnectionmyConn=newSqlConnection(server=(local)database=mmuid=sapwd=)
   SqlCommandmyCmd=newSqlCommand(insertintotest(content)values(+FreeTextBoxText+)myConn)
   myConnOpen()
   myCmdExecuteNonQuery()
   myConnClose()
  } 


From:http://tw.wingwit.com/Article/program/net/201311/15741.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.