就是说怎么给他上输入到数据库??
比如说我数据库中的字段是 "hy "
可这个hy在提交的页面放哪儿??我找了半天也没见一个name 晕
[此贴子已经被作者于2006-5-10 17:09:47编辑过]
就是说怎么给他上输入到数据库??
比如说我数据库中的字段是 "hy "
可这个hy在提交的页面放哪儿??我找了半天也没见一个name 晕
[此贴子已经被作者于2006-5-10 17:09:47编辑过]
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
if Trim(Request.QueryString("a"))="ok" then
Response.Write(Request.Form("content"))
Response.End()
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<iframe src="htmledit/index.html" id="htmlletter" name="htmlletter" style="height:321px; width:100%;" scrolling="no" border="0" frameborder="0" tabindex="3" ></iframe>
<script language = "JavaScript">
function CheckForm()
{
document.myform.content.value=htmlletter.HtmlEditor.document.body.innerHTML;
return true;
}
</script>
<form action="?a=ok" method="post" name="myform">
<input name="content" type="hidden" id="content" />
<INPUT type="submit" value="发 送" onclick="CheckForm()">
</form>
</body>
</html>
[此贴子已经被作者于2006-5-11 8:27:16编辑过]