菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" type="text/css" href="/try/showrazor.css" /> </head> <body> <span class="marked"> @{<br> var imagePath=""; <br> if( Request["Choice"] != null)<br> {imagePath="images/" + Request["Choice"];} <br> } <br> </span><!DOCTYPE html> <br> <html> <br> <body> <br> <h1>Display Images</h1> <br> <form method="post" action=""> <br> I want to see: <br> <select name="Choice"> <br> <option value="Pic1.jpg">Photo 1</option> <br> <option value="Pic2.jpg">Photo 2</option> <br> <option value="Pic3.jpg">Photo 3</option> <br> </select> <br> <input type="submit" value="Submit"> <br> <span class="marked"> @if(imagePath != "")<br> {<br></span><p><br><img src="<span class="marked">@imagePath</span>" alt="Sample"><br></p><span class="marked"><br>}</span> <br> </form> <br> </body> <br> </html> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net