欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.NET中的Code Behind技术(2)

程序员文章站 2022-05-27 21:53:07
四.具体实现步骤   1).新建一个html页面   你可以使用微软的fontpage来设计你的页面的整个布局。把你的所以选项都设计到此页面中去。具体的界面如下图:...
四.具体实现步骤

  1).新建一个html页面

  你可以使用微软的fontpage来设计你的页面的整个布局。把你的所以选项都设计到此页面中去。具体的界面如下图:

ASP.NET中的Code Behind技术(2)

  把此html文件命名为send.htm。具体代码如下:

<html>
<head>
 <meta http-equiv="content-type" content="text/html; charset=gb2312">
 <meta name="generator" content="microsoft frontpage 4.0">
 <meta name="progid" content="frontpage.editor.document">
 <title>new page 1</title>
</head>
<body>
 <h3>欢迎进入code behind设计界面</h3> 
 <form>
  <table border="1" width="100%">
  <tr>
   <td width="100%" colspan="2">请填入下列各项:</td>
  </tr>
  <tr>
   <td width="35%">姓名</td>
   <td width="65%"><input type="text" name="name" size="20">
   </td>
  </tr>
  <tr>
   <td width="35%">电子邮件地址</td>
   <td width="65%"><input type="text" name="email" size="20">
   </td>
  </tr>
  <tr>
   <td width="35%">内容</td>
   <td width="65%">
     <textarea rows="7" name="message" cols="26">
     </textarea>
   </td>
  </tr>
  <tr>
   <td width="100%" colspan="2">
    <input type="submit" value="submit" name="b1"></td>
   </tr>
  </table>
 </form>
<p></p>
</body>
</html>