ASP.NET中的Code Behind技术(2)
程序员文章站
2023-02-21 08:08:00
四.具体实现步骤
1).新建一个html页面
你可以使用微软的fontpage来设计你的页面的整个布局。把你的所以选项都设计到此页面中去。具体的界面如下图:...
四.具体实现步骤
1).新建一个html页面
你可以使用微软的fontpage来设计你的页面的整个布局。把你的所以选项都设计到此页面中去。具体的界面如下图:
把此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>
1).新建一个html页面
你可以使用微软的fontpage来设计你的页面的整个布局。把你的所以选项都设计到此页面中去。具体的界面如下图:
把此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>
上一篇: Centos6系列Bond配置方法
下一篇: 动手写个小组件(组件入门)_asp
推荐阅读
-
在asp.NET中字符串替换的五种方法第1/2页
-
ASP.NET中的Code Behind技术(2)
-
ASP.NET编程中的十大技巧第1/2页
-
ASP.NET编程中的十大技巧第1/2页
-
【Web API系列教程】2.3 — ASP.NET Web API 2中的属性路由
-
在asp.NET中字符串替换的五种方法第1/2页
-
ASP.NET 页面中动态增加的控件、添加事件第1/2页
-
【ASP.NET MVC系列】浅谈缓存技术在ASP.NET中的运用
-
Asp.Net Core 学习教程2、使用ASP.NET Core中的RazorPages
-
ASP.NET Core中快速构建PDF文档的步骤分享第2/2页