案例:ASP.net案例     状态:不可编辑再运行    进入竖版
 运行结果 
AخA
 
1
@{
2
var imagePath=""; 
3
if( Request["Choice"] != null)
4
   {imagePath="images/" + Request["Choice"];} 
5
} 
6
<!DOCTYPE html> 
7
<html> 
8
<body> 
9
<h1>Display Images</h1> 
10
<form method="post" action=""> 
11
I want to see: 
12
<select name="Choice"> 
13
   <option value="Pic1.jpg">Photo 1</option> 
14
   <option value="Pic2.jpg">Photo 2</option> 
15
   <option value="Pic3.jpg">Photo 3</option> 
16
</select> 
17
<input type="submit" value="Submit"> 
18
@if(imagePath != "")
19
{
20
<p>
21
<img src="@imagePath" alt="Sample">
22
</p>
23
}  
24
</form> 
25
</body> 
26
</html>