asp企业新闻录入问题?
红色圈起来的本来是一个新闻内容输入框...
可是没显示出来,内容输入框包含的是一个asp页面..代码如下:
<!--#include file="../conn/connTwoLayer.asp"-->
<html>
<head>
<title></title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href=site.css rel=stylesheet>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%
If request("action")="modify" Then
set rs=server.createobject("adodb.recordset")
sql="select * from article where id="&request("id")
rs.open sql,conn,1,1
If Not rs.Eof Then
Content=rs("Content")
End If
Response.Write Content
rs.close
set rs=nothing
End If
%>
</body>
</html>
小弟本来是jsp开发的..朋友交个代码给我改只有求教各位高手了... --------------------编程问答-------------------- 文本编辑器
asp看看 ewebeditor --------------------编程问答-------------------- 嵌入编辑器的问题 你找找那块的代码
在ASP里面 一般都是嵌入一个编辑器 然后编辑器的地方会跟个textarea表单。
补充:.NET技术 , ASP.NET