Dreamweaver当中表单中输入内容按提交后,想把输入的内容输出在同一个页面的下方,该怎么用代码?
4个回答
展开全部
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!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>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<script language="javascript" type="text/javascript">
function Check(){
if(document.getElementById('content').value==''||document.getElementById('content').value=='在这里输入内容……'){
alert('错误:请输入内容!');
return false;
}else{
document.getElementById('show_content').innerHTML=document.getElementById('content').value+'<br>欢迎你';
return false;
}
}
</script>
<form name="form1" id="form1" action="" method="post" onsubmit="return Check();" style="text-align:center">
<textarea id="content" name="content" style="width:250px; height:50px;" onfocus="if (this.value=='在这里输入内容……')this.value='';this.select();" onblur="if(this.value=='')this.value='在这里输入内容……';">在这里输入内容……</textarea><br />
<input type="submit" value="提交" /><br /><br />
<div id="show_content" style="width:250px; height:50px; border:#666 solid 1px;" ></div>
</form>
</body>
</html>
<!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>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<script language="javascript" type="text/javascript">
function Check(){
if(document.getElementById('content').value==''||document.getElementById('content').value=='在这里输入内容……'){
alert('错误:请输入内容!');
return false;
}else{
document.getElementById('show_content').innerHTML=document.getElementById('content').value+'<br>欢迎你';
return false;
}
}
</script>
<form name="form1" id="form1" action="" method="post" onsubmit="return Check();" style="text-align:center">
<textarea id="content" name="content" style="width:250px; height:50px;" onfocus="if (this.value=='在这里输入内容……')this.value='';this.select();" onblur="if(this.value=='')this.value='在这里输入内容……';">在这里输入内容……</textarea><br />
<input type="submit" value="提交" /><br /><br />
<div id="show_content" style="width:250px; height:50px; border:#666 solid 1px;" ></div>
</form>
</body>
</html>
2008-10-25
展开全部
举例来说吧,记得调用资料库连接页面咦
view.asp(包含两部分,新增表单内容及输出表单内容)
<!--表单输入提交部分开始-->
<form name=form1 method=post action="">
主题:<input name=title type=text size=15>
内容:<textarea name=content cols=15 rows=2></textarea>
<input name=add type=submit value=提交>
</form>
<%
if not isempty(request("add")) then
title=request.form("title")
content=request.form("content")
if title<>"" or contnet<>"" then
sql="insert into 表(title,content) values('"&title&"','"&content&"')"
conn.execute(sql)
response.write"<script>alert('新增成功!');window.location='view.asp'</script>"
else
response.write"<script>alert('主题或内容不能为空哦!');history.go(-1)</script>"
end if
end if
%>
<!--输出表单提交开始-->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from 表 order by id desc"
rs.open sql,conn,1,1
do while not rs.eof
%>
<%=rs("title")%><%=rs("content")%>
<%
rs.movenext
if rs.eof then exit do
loop
rs.close
set rs=nothing
%>
view.asp(包含两部分,新增表单内容及输出表单内容)
<!--表单输入提交部分开始-->
<form name=form1 method=post action="">
主题:<input name=title type=text size=15>
内容:<textarea name=content cols=15 rows=2></textarea>
<input name=add type=submit value=提交>
</form>
<%
if not isempty(request("add")) then
title=request.form("title")
content=request.form("content")
if title<>"" or contnet<>"" then
sql="insert into 表(title,content) values('"&title&"','"&content&"')"
conn.execute(sql)
response.write"<script>alert('新增成功!');window.location='view.asp'</script>"
else
response.write"<script>alert('主题或内容不能为空哦!');history.go(-1)</script>"
end if
end if
%>
<!--输出表单提交开始-->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from 表 order by id desc"
rs.open sql,conn,1,1
do while not rs.eof
%>
<%=rs("title")%><%=rs("content")%>
<%
rs.movenext
if rs.eof then exit do
loop
rs.close
set rs=nothing
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-04-13 · 知道合伙人互联网行家
关注
展开全部
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!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>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<script language="javascript" type="text/javascript">
function Check(){
if(document.getElementById('content').value==''||document.getElementById('content').value=='在这里输入内容……'){
alert('错误:请输入内容!');
return false;
}else{
document.getElementById('show_content').innerHTML=document.getElementById('content').value+'<br>欢迎你';
return false;
}
}
</script>
<form name="form1" id="form1" action="" method="post" onsubmit="return Check();" style="text-align:center">
<textarea id="content" name="content" style="width:250px; height:50px;" onfocus="if (this.value=='在这里输入内容……')this.value='';this.select();" onblur="if(this.value=='')this.value='在这里输入内容……';">在这里输入内容……</textarea><br />
<input type="submit" value="提交" /><br /><br />
<div id="show_content" style="width:250px; height:50px; border:#666 solid 1px;" ></div>
</form>
</body>
</html>
<!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>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<script language="javascript" type="text/javascript">
function Check(){
if(document.getElementById('content').value==''||document.getElementById('content').value=='在这里输入内容……'){
alert('错误:请输入内容!');
return false;
}else{
document.getElementById('show_content').innerHTML=document.getElementById('content').value+'<br>欢迎你';
return false;
}
}
</script>
<form name="form1" id="form1" action="" method="post" onsubmit="return Check();" style="text-align:center">
<textarea id="content" name="content" style="width:250px; height:50px;" onfocus="if (this.value=='在这里输入内容……')this.value='';this.select();" onblur="if(this.value=='')this.value='在这里输入内容……';">在这里输入内容……</textarea><br />
<input type="submit" value="提交" /><br /><br />
<div id="show_content" style="width:250px; height:50px; border:#666 solid 1px;" ></div>
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
您这问题太初级,太笼统了。这跟DW没关系,要看是asp,js,aspx哪个,不过都简单
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |