下面是<FORM>标记的一个例子: <FORM. METHOD="POST"ACTION="/new/new-script"> … </FORM>其中METHOD属性的用途是______。
A.让浏览器将完成的窗体发送到服务器上的new目录中的new-script脚本
B.该属性将窗体指向一个接收窗体信息并使用该信息完成某些工作的URL
C.该属性告诉窗体如何将其信息发回到脚本,本例中用的是POST方法
D.让浏览器将完成的窗体发送到服务器上new-script的目录中的new脚本
第1题:
The children stay in the nuclear family ____ they grow up and marry. Then they form. new nuclear families.
A: because
B: as
C: until
D: since
第2题:
要在窗体的标题内显示“myfrm",使用的语句是()。
A. Form. 1. Print"myfrm"
B. Form. Print"rnyfrm"
C. Form. caption= "myfrm"
D. Form. 1. caption= "myfrm"
第3题:
下面是用户登录页面的部分代码,基本功能是检测用户是否填写用户名,如果没有填写,弹出对话框提示错误,否则提交用户信息。请为下列(9)~(13)处选择合适的答案。
.
.
.
<form. name=loginfo method=post(9)="chkuser.asp">
<input type=submit value="登录" nClick="return checkuu();">
</form>
<SCRIPT. language=" JavaScript" >
<!--
(10)checkuu()
{
if(checkspace(document,loginfo.username.(11))){
document.loginfo.username, focus();
(12)("用户名不能为空");
(13)false;
}
.
.
.
}
//-->
</script>
(9)~(13)备选答案
A. run B. action C. value D. return
E. a href F. alert G. submit H. function
第4题:
● 下图是HTML文件submit.html在IE 中的部分显示效果。
请完成下面submit.html中部分html代码。
<form. action=/cgi-bin/post-query method=POST>
您的姓名:
<input type=text name=姓名><br>
您的主页的网址:
<input type=text name=网址 value=http://><br>
密码:
<input type=(44) name=密码><br>
<input type=submit value="发送"><input type=(45) value="重设">
</form>
(44)
A. text
B. password
C. passwd
D. key
(45)
A. send
B. reset
C. restart
D. replace
第5题:
当双击窗体Form1时,要将窗体Form1隐藏起来、将窗体Form2以模式方式显示出来的事件过程,正确的是
A.Private Sub Form. _ Db1Click( ) Forml.Hide Form2.Show 0 End Sub
B.Private Sub Form. _ Db1Click( ) Form1.Hide Form. 2.Show 1 End Sub
C.Private Sub Form. _ Click( ) Form. l.Hide Form. 2.Show End Sub
D.Private Sub Form. _ Dbl Click( ) Form. l.Enabled=False Form. 2.Enabled=True End Sub
第6题:
要在表单中添加提交按钮,实现在用户单击“提交”按钮时,自动将表单提交道ACTION属性中指定的位置。下列语句正确的是()。
第7题:
以下有关表单的说明中,错误的是()
第8题:
下面语句中,正确的是()
第9题:
kristin wants to build an action which exits the video form. the action will be avaiable only when the user is reading the document ,which one of the following accomplish this ? ()
第10题:
You are creating a Windows Forms application by using the .NET Framework 3.5. You create a new form in your application.You add 100 controls at run time in the Load event handler of the form. Users report that the form takes a long time to get displayed. You need to improve the performance of the form. What should you do?()
第11题:
The data entered into the called form is logically independent of the data entered in the calling form.
The called form requires different privileges than the calling form.
The called form must execute as a different user than the calling form.
The calling form must be able to query data in the called form before it is saved.
第12题:
public.class.AddAction.implements.Action{...extends.Action
mapping.findForward(/ch01/result.jsp);findForward(“name”),new.ActionForward(“/ch01/result.jsp”)
form.method=getaction=add.do
action.name=addActionpath=/addtype=y2ssh.sg.web.action.AddActionName指form的名字
第13题:
此题为判断题(对,错)。
第14题:
该网站查询商品网页search.htrnl的部分代码如下,请根据该页面和数据库shop.mdb中的表prouducts将search.asp的部分代码补充完整。 search, html: …… <form. method="POST"action="search.asp"> <p>请输入商品名称<input type="text" name="name" size="20"> <input type="submit">确认 …… </form> search, asp …… Pname=Request ("name") sql="Select * From (18) Where productname="& (19) Set rs=conn. (20) (sql) ……
备选答案: A.shop B.name
C.open D.Execute
E.prouducts F.Pname
第15题:
下图是HTML文件submit.html在IE中的部分显示效果。
请完成下面submit.html中部分html代码。
<form. action=/cgi-bin/post-query method=POST>
您的姓名:
<input type=text name=姓名><br>
您的主页的网址:
<input type= text name=网址value=http://><br>
密码:
<input type= (44) name=密码><br>
<input type=submit value=“发送”><input type= (45) value=“重设”>
</form>
(44)
A.text
B.password
C.passwd
D.key
第16题:
请将以下用户的信息以POST的方式送往处理文件chkuser.asp的表单语句填写完整。 <form. name=loginfo method=post(42)="chkuser. asp">
A.action
B.value
C.method
D.target
第17题:
下面语句中,正确的是()
第18题:
在HTML中,关于表单描述错误的是()。
第19题:
<form method=()action=search.jsp>…</form>。
第20题:
HMTL表单的首要标记是〈form〉,〈form〉标记的参数method表示表单发送的方法,可能为get或post,下列关于get和post的描述正确的是()。
第21题:
Which scenario describes an appropriate use for opening a form in a new session?()
第22题:
在Dreamweaver MX中,下面关于Field元素的说法错误的是()
第23题:
Form标记的主要属性有Method和Action
Method表示表单递交的方法是Post或Get
Action是告诉表单把收集到的数据送到什么地方