pizzaf~1.htm
来自「VC++技术内幕配套书源代码」· HTM 代码 · 共 33 行
HTM
33 行
<html>
<head><title>Inside Visual C++ HTML Form 1</title>
</head>
<body>
<h1><center>Welcome to CyberPizza</center></h1>
<p> Enter your order.
<form action="scripts/ex31a.dll?ProcessPizzaForm" method=POST>
<p> Your Name: <input type="text" name="name" value="">
<p> Your Address: <input type="text" name="address" value="">
<p> Number of Pies: <input type="text" name="quantity" value=1>
<p>Pizza Size:
<menu>
<li><input type="radio" name="size" value=8>8-inch
<li><input type="radio" name="size" value=10>10-inch
<li><input type="radio" name="size" value=12 checked>12-inch
<li><input type="radio" name="size" value=14>14-inch
</menu>
<p> Toppings:
<p>
<input type="checkbox" name="top1" value="Pepperoni" checked> Pepperoni
<input type="checkbox" name="top2" value="Onions"> Onions
<input type="checkbox" name="top3" value="Mushrooms"> Mushrooms
<input type="checkbox" name="top4" value="Sausage"> Sausage
<p>
<em>(you can select multiple toppings)</em>
<p><input type="submit" value="Submit Order Now"><input type="reset">
</form>
</body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?