ewebeditor4.80版本在asp環境下的安裝教程

來源:互聯網
上載者:User
教程|ewebeditor 第一步,需要下載EWebEditor4.80的代碼,請點這裡下載,我這個是4.80版本的。

第二步,把這個壓縮包解開,裡邊是一個叫做EWebEditor的檔案夾,把它整個拷貝到你的網站後台目錄下,像我這樣:。

第三步,我們定義這樣幾個頁面和資料庫中的欄位,名字可能和我的不太一樣,不過你肯定能找到在你的後台找到同樣功能的檔案:
  1、news_add.asp,新聞添加頁面,顯示的是輸入標題、內容、作者、日期等的地方。裡邊會有個form標籤指向到news_add_action.asp。
  2、news_add_action.asp,新聞添加後處理頁面,功能是將news_add.asp中輸入的內容插入到你的access資料庫中去。
  3、ewebeditor.htm,這個不是假設的,這個是你解壓縮以後會在ewebeditor檔案夾中看到的。
  4、資料庫名為date.mdb,裡邊有個表,叫做news,news表裡有個欄位,叫做content,它是放置新聞的具體內容的,就是我們要利用ewebeditor插入的內容。至於其他欄位,就不羅嗦了。

第四步,news_add.asp中的設定。
  你原來可能是一個簡單的輸入框textarea,類似下邊的:
引用:
<textarea name="textarea"></textarea>
那麼,請將這段代碼換成下邊的代碼:
引用:
<input type="hidden" name="content" value="">
<iframe ID="eWebEditor1" src="ewebeditor/ewebeditor.htm?id=content&style=coolblue" frameborder="0" scrolling="no" width="600" HEIGHT="350"></iframe>
要特別注意,代碼中紅色的部分,是必須修改成對應的代碼,代碼中藍色的部分,是設定外觀參數的,可以自行修改,詳細功能不說了,都差不多。

第五步,news_add_action.asp中的代碼
引用:
<!--#include file="../conn/conn.asp"-->
<%
set rs=server.CreateObject("adodb.recordset")
sqlstar="select * from news where news_title='"&request.form("news_title")&"'"
rs.open sqlstar,conn,1,3
if rs.eof or rs.bof then
rs.addnew
rs("news_title")=request.form("news_title")
rs("news_date")=request.form("news_date")
rs("news_user")=session("user_name")
rs("content")=request("content")
rs.update
response.Write"<script>alert('添加成功!');this.location.href='news_add.asp';</script>"
else
response.Write"<script>alert('此新聞已經添加過了!');this.history.go(-1);</script>"
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
代碼中紅色部分是值得特別注意的地方。

到這裡就完成了,大家試試吧,要是發現什麼問題,再來這裡留言,大家一起研究。


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.