基本的 HTML 表单
c# 实例
基本的 html 表单
<!doctype html>
<html>
<body>
@{
if (ispost)
{
string companyname = request["companyname"];
string contactname = request["contactname"];
<p>you entered: <br>
company name: @companyname <br>
contact name: @contactname </p>
}
else
{
<form method="post" action="">
company name:<br>
<input type="text" name="companyname" value=""><br>
contact name:<br><br>
<input type="text" name="contactname" value=""><br><br>
<input type="submit" value="submit" class="submit">
</form>
}
}
</body>
</html>
相关文章
- ASP.NET Web Pages WebMail 参考手册
- ASP.NET MVC Web 应用程序
- ASP.NET MVC 控制器
- ASP.NET MVC 数据库
- ASP.NET Web 页面
- ASP.NET Web 表单
- ASP.NET ViewState
- ASP.NET ListItem 控件
- ASP.NET Panel 控件
- ASP.NET BulletedList 控件
- WebSecurity CreateUserAndAccount 方法
- HTML Image 2
- HTML InputRadiobutton
- HTML Textarea
- ASP.NET HTML 控件 Image
- ASP.NET HTML 控件 Repeater
- ASP.NET HTML 控件 用 重复
- ASP.NET HTML 控件 RangeValidator 2
- ASP.NET HTML 控件 RegularExpressionValidator
- ASP.NET HTML 控件 Validationsummary 2