⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug_1.html

📁 程序练习中包括书中实例程序代码和练习中要用到的代码,是压缩文件
💻 HTML
字号:
<HTML>
<HEAD>
<TITLE>Temperature Conversion Web</TITLE>
</HEAD>
<BODY>
<H3>Temperature Conversion Exercise </H3>
<P>This mini-web is an example of MVC.
<UL COMPACT>
<LI>The model is the class 
    <b>questions.c17.TempConvert</b>.</LI>
<LI>The controller is the servlet class
    <b>questions.c17.TConvert1</b>.</LI>
<LI>The view is this page,  
    <b>questions.c17.TConvert1.html</b> on input
    and<br>
    <b>questions.c17.TConvert1.jsp</b> or
    <b>questions.c17.ErrorPage.jsp</b> on output.</LI>
</UL>
<FORM ACTION=
"http://localhost:8080/servlet/questions.c17.Debug_2">
<TABLE>
<TR>
<TD>1. Enter a number of degrees</TD>
<TD><INPUT TYPE=TEXT NAME=DEGREES VALUE=0></TD>
</TR><TR>
<TD>2. Select a conversion</TD>
<TD><SELECT NAME=CONVERT >
  <OPTION VALUE=CTOF SELECTED>
     Celsius to Fahrenheit</OPTION>
  <OPTION VALUE=FTOC>Fahrenheit to Celsius</OPTION>
</SELECT></TD>
</TR><TR>
<TD>3. Press when ready:</TD>
<TD><INPUT TYPE="text" VALUE="Do Conversion"></TD>
</TR>
</TABLE>
</FORM>
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -