|
|
|
เรื่อง WYSIWYG editor(asp) คือว่าถ้าผมต้องการ select ข้อความที่จัดการด้วย WYSIWYG editor(asp) |
|
|
|
|
|
|
|
Code (ASP)
<textarea><%=objRec.Fields("Description").Value%></textarea>
|
|
|
|
|
Date :
2010-06-18 06:09:11 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ยังงัยจะลองทำดู
|
|
|
|
|
Date :
2010-06-18 23:45:02 |
By :
blacklion |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ MR.WIN ครับ textarea ที่พี่บอก เอามาใส่ตรงไหนของโค้ดครับ
โค้ดของ WYSIWYG editor(asp) - Online Editor มันเป็นแบบนี้
Code (ASP)
<html>
<head>
<title> EditWorks Test </title>
</head>
<body bgcolor="#ffffff">
<% 'Include the EditWorks class file %>
<!-- #INCLUDE file="ew/class.editworks.asp" -->
<form action="ewtest.asp" method="post">
<%
dim myEW
set myEW = new ew
myEW.SetPathType EW_PATH_TYPE_FULL
myEW.SetDocumentType EW_DOC_TYPE_HTML_PAGE
myEW.SetImageDisplayType EW_IMAGE_TYPE_THUMBNAIL
myEW.SetValue("<font face=verdana size=5 color=#1e90ff><b>Welcome to EditWorks!</b></font>")
myEW.ShowControl "90%", "500", "/images"
%>
<br><br>
<input type="submit" value="Get HTML >>"><br><br>
<textarea cols="100" rows="10"><%
Response.Write myEW.GetValue(false)
%></textarea>
</form>
</td></tr></table>
</body>
</html>
ผลลองใส่ตรง myEW.SetValue บรรทัดที่ 21 มัน error ครับ
ปล. ลองทำหลายวิธีแล้ว ไม่ได้ซักที รบกวนพี่ MR.WIN ช่วยตอบคำถามหน่อยนะครับ
|
|
|
|
|
Date :
2010-06-21 01:49:23 |
By :
blacklion |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อันนี้เป็นโค้ดของผม
Code (ASP)
'Include the EditWorks class file %>
<!-- #INCLUDE file="ew/class.editworks.asp" -->
<form action="addinformation.asp" method="post">
<table bgcolor="#00ff00"><tr><td> หัวข้อ: <font color="#ff0000">**</font><input type="text" name="title" size="70" /><font color="#ff0000">*</font></td></tr>
<tr><td align="center">
<%
sql = "select * from forum where forum_id = '"&request("tid")&"' "
Set objRec = Server.CreateObject("ADODB.Recordset")
objRec.Open sql, Conn
session("title")=request("title")
dim myEW
set myEW = new ew
myEW.SetPathType EW_PATH_TYPE_FULL
myEW.SetDocumentType EW_DOC_TYPE_HTML_PAGE
myEW.SetImageDisplayType EW_IMAGE_TYPE_THUMBNAIL
myEW.SetValue("<font face=verdana size=5 color=#1e90ff><b>Welcome to EditWorks!</b></font>")
myEW.ShowControl "90%", "500", "/images"
%>
<br><br>
<input type="submit" value="ตกลง" style="width:100px">
<input type="hidden" name="work" value=2 />
<input type="button" value="ยกเลิก" onClick="parent.location='information.asp?'" style="width:100px"><br><br>
<%
end if
%>
</td></tr></table>
</form>
</td></tr>
|
|
|
|
|
Date :
2010-06-21 01:55:33 |
By :
blacklion |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
myEW.SetValue(objRec.Fields("Description").Value)
|
|
|
|
|
Date :
2010-06-21 06:12:48 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผลลัพธ์มันได้ 0 อ่ะครับ พี่ MR.WIN
ผมใส่โค้ดไปแบบนี้
Code (ASP)
myEW.SetValue(objRec.Fields("forum_msg").Value)
อันนี้เป็น Databaase
|
|
|
|
|
Date :
2010-06-21 19:28:51 |
By :
blacklion |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับพี่ MR.WIN ความผิดอยู่ที่ผมเองแหละ ผมไปปิดตัวนี้
Code (ASP)
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "Driver={SQL Server};Server=USER;Database= ;UID= ;PWD=;"
conn.close
ขอบคุณมากครับพี่
โปรเจ็คนี้ผมคงมีคำถามอีกมากมายเลยแหละที่จะมาถาม...เหอๆ
|
|
|
|
|
Date :
2010-06-22 18:26:23 |
By :
blacklion |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|