案例:ASP.net案例     状态:不可编辑再运行    进入竖版
 运行结果 
AخA
 
1
<!DOCTYPE html>
2
<html> 
3
<body> 
4
@{
5
if (IsPost)
6
{ 
7
string companyname = Request["CompanyName"]; 
8
string contactname = Request["ContactName"]; 
9
<p>You entered: <br> 
10
Company Name: @companyname <br> 
11
Contact Name: @contactname </p> 
12
}
13
else
14
{
15
<form method="post" action="">
16
Company Name:<br> 
17
<input type="text" name="CompanyName" value=""><br>
18
Contact Name:<br><br>
19
<input type="text" name="ContactName" value=""><br><br>
20
<input type="submit" value="Submit" class="submit">
21
</form> 
22
}
23
} 
24
</body> 
25
</html>