mirror of
https://github.com/hequan2017/seal.git
synced 2026-02-08 12:54:40 +08:00
15 lines
420 B
Plaintext
15 lines
420 B
Plaintext
<% @LANGUAGE="VBSCRIPT" CODEPAGE="65001" %>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
|
|
<script src="../../ueditor.parse.js" type="text/javascript"></script>
|
|
<script>
|
|
uParse('.content',{
|
|
'rootPath': '../'
|
|
})
|
|
|
|
</script>
|
|
<%
|
|
Dim content
|
|
content = Request.Form("myEditor")
|
|
Response.Write("第1个编辑器的值")
|
|
Response.Write("<div class='content'>" + content + "</div>")
|
|
%> |