retrieve.aspx
上传用户:avia982301
上传日期:2008-10-30
资源大小:557k
文件大小:1k
- <%@ Page language="VB" AutoEventWireup="false" validateRequest="False"%>
- <HTML>
- <HEAD>
- <TITLE>eWebEditor : 表单接收示例</TITLE>
- <META http-equiv=Content-Type content="text/html; charset=gb2312">
- <link rel='stylesheet' type='text/css' href='example.css'>
- </HEAD>
- <BODY>
- <p><b>导航 : <a href="default.aspx">示例首页</a> > 表单接收示例</b></p>
- <p>此例演示了如何接收到表单提交过来的HTML代码,并显示它。</p>
- <%
- Dim sContent1
- sContent1 = Request.Form("content1")
- Response.Write ("编辑内容如下:<br><br>" & sContent1)
- Response.Write ("<br><br><p><input type=button value=' 后退 ' onclick='history.back()'></p>")
- %>
- </BODY>
- </HTML>