VB 实例 基本的 HTML 表单
vb 实例
基本的 html 表单
<!doctype html>
<html>
<body>
@if (ispost)
dim companyname = request("companyname")
dim contactname = request("contactname")
@<p>you entered: <br><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>
<input type="text" name="contactname" value=""><br><br>
<input type="submit" value="submit" class="submit">
</form>
end if
相关文章
- ASP.NET Razor C# 变量
- ASP.NET Razor VB 变量
- ASP.NET MVC – 发布
- ASP.NET 事件句柄
- ASP.NET ImageButton 控件
- ASP.NET Style 控件
- WebSecurity CreateAccount 方法
- WebSecurity CreateUserAndAccount 方法
- WebSecurity IsConfirmed 方法
- ASP.NET HTML 控件 Calendar
- ASP.NET HTML 控件 Hyperlink
- ASP.NET HTML 控件 Literal
- ASP.NET HTML 控件 xml
- ASP.NET HTML 控件 CustomValidator
- ASP.NET HTML 控件 RegularExpressionValidator
- ASP.NET HTML 控件 Validationsummary
- ASP.NET HTML 控件 Hashtable RadioButtonList 1
- ASP.NET HTML 控件 SortedList DropDownList
- ASP.NET HTML 控件 XML RadiobuttonList
- C# 实例 For Each 循环