紧急的一个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>
根本 就没有输入框....求解