搜索文章:

首页  |  Java技术  |  Asp.net  |  Asp编程  |  VC/C++  |  Delphi  |  VB编程

实例演示:使用ASP生成HTML文件

共有两个页面index.htm是首页.程序比较简单,主要是用了asp里的文件操作对象

<!--index.htm---------------------->

  <!doctype html public "-//w3c//dtd html 4.01 transitional//en"
  "http://www.w3.org/tr/html4/loose.dtd">
  <html>
  <head>
  <title>untitled document</title>
  <meta http-equiv="content-type" content="text/html; charset=gb2312">
  </head>

  <body>
  <table width="770" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td><form name="form1" method="post" action="send.asp">
      <table width="100%"  border="0" cellpadding="0" cellspacing="0" bgcolor="#ccffff">
        <tr>
          <td height="20"><div align="center">发送消息</div></td>
          </tr>
        <tr>
          <td><div align="center">
            <textarea name="msg" cols="100" rows="6"></textarea>
          </div></td>
          </tr>
        <tr>
          <td><div align="center">
              <input type="submit" name="submit" value="submit">
              <input type="reset" name="submit2" value="reset">
          </div></td>
          </tr>
      </table>

()

相关文章:
© 2006   www.java-asp.net