form表单应用于web客户端与web服务器间传递数据,下列哪些属性用于form标签。()A.targetB.nameC.actionD.method
form表单应用于web客户端与web服务器间传递数据,下列哪些属性用于form标签。()
A.target
B.name
C.action
D.method
参考答案和解析
ABCD
相关考题:
以下有关表单的说明中,错误的是:()。 A.填写完毕的表单通常要发送到服务器端由特定程序处理。B.在FORM标记符中使用action属性指定表单处理程序的位置。C.在FORM标记符中使用method属性指定提交表单数据的方法。D.表单中的“重置”按钮是必不可少的。
在IE浏览器中,单击标记的type属性值为(42)的按钮可以将form表单内的数据发送到服务器。A.p 在IE浏览器中,单击<input>标记的type属性值为(42)的按钮可以将form表单内的数据发送到服务器。A.passwordB.radioC.submitD.reset
若表单提交时采用的是post方法,则服务器端要获得表单所提交的数据,应采用()语句实现。 A.responsE.Querystring("表单域名")B.request.form("表单域名")C.request.Querystring("表单域名")D.responsE.form("表单域名")
You create a Web Form that contains connected Web Parts. You write the following declaration in your Web Form.You need to ensure that your Web Part connection is valid. Which two actions should you perform? ()A. Include a data source identified as WebPartConnection1 on the Web Form.B. Include a Web Part identified as customerPart on the Web Form.C. Include a Web Part identified as ordersPart on the Web Form.D. Ensure that you declare an interface named IOrdersPart.E. Ensure that you declare an interface named ICustomerPart.F. Ensure that each Web Part declares either a GetInterface or ProvideInterface method.
在HTML中,实现用户与Web服务器信息交换的标记是______。A.B.C. 在HTML中,实现用户与Web服务器信息交换的标记是______。A.<FORM></FORM>B.<PRE></PRE>C.<SCRIPT></SCRIPT>D.<META>
利用标记创建表单时,属性(38)用于设定处理表单数据程序url的地址。A.methodB.nameC. 利用<form></form>标记创建表单时,属性(38)用于设定处理表单数据程序url的地址。A.methodB.nameC.actionD.onreset
利用…标记创建表单,属性(44)用于指定输入数据结果显示到哪个窗口。A.actionB.method 利用<form>…</form>标记创建表单,属性(44)用于指定输入数据结果显示到哪个窗口。A.actionB.methodC.onsubmitD.target
若要提交采用的是Post方法,则服务器端要获得表单所提交的数据,应采用()语句来实现。ARequest.Form(“表单域名”)BRequest.QueryString(“表单域名”)CResponse.Form(“表单域名”)DResponse.QueryString(“表单域名”)
若表单提交时采用Get方法,则服务器要获得表单所提交的数据,应采用()语句来实现ARequest.Form(“表单域名”)BRequest.QueryString(“表单域名”)CResponse.Form(“表单域名”)DResponse.QueryString(“表单域名”)
下列几组控件中都有ControCount属性的是()A、表单(Form)、文本框(TextBox)、列表框(ListBox)B、表单集(FormSet)、表单(Form)、页框(PageFrame)C、表单(Form)、页面(Page)、列(Column)D、列(Column)、选项按钮组(OptionGroup)、命令按钮组(CommandGroup)
以下有关表单的说明中,错误的是()A、表单通常用于搜集用户信息B、在FORM标记符中使用action属性指定表单处理程序的位置C、表单中只能包含表单控件,而不能包含其他诸如图片之类的内容D、在FORM标记符中使用method属性指定提交表单数据的方法
You create a Web Form that contains connected Web Parts. You write the following declaration in your Web Form. You need to ensure that your Web Part connection is valid. Which two actions should you perform? ()A、Include a data source identified as "WebPartConnection1" on the Web Form.B、Include a Web Part identified as "customerPart" on the Web Form.C、Include a Web Part identified as "ordersPart" on the Web Form.D、Ensure that you declare an interface named "IOrdersPart".E、Ensure that you declare an interface named "ICustomerPart".F、Ensure that each Web Part declares either a GetInterface or ProvideInterface method.
You create a Web Form. You need to add controls that use adaptive rendering to display content. The type of content rendered must depend on the device that is requesting the page. What are two possible ways to achieve this goal? ()A、Add custom controls that emit XHTML to the Web Form.B、Add custom controls that emit WML to the Web Form.C、Add mobile controls to the Web Form.D、Add Web server controls to the Web Form.
单选题以下有关表单的说明中,错误的是()A表单通常用于搜集用户信息。B在 FORM 标记符中使用 action 属性指定表单处理程序的位置。C表单中只能包含表单控件,而不能包含其他诸如图片之类的内容。D在 FORM 标记符中使用 method 属性指定提交表单数据的方法。
单选题若表单提交时采用Get方法,则服务器要获得表单所提交的数据,应采用()语句来实现ARequest.Form(“表单域名”)BRequest.QueryString(“表单域名”)CResponse.Form(“表单域名”)DResponse.QueryString(“表单域名”)
多选题You write a logging function for a Web Form. You call the logging function from the Page_Unload event handler. You test the Web Form and notice that the Page_Unload event handler does not call the logging function. You need to ensure that the logging function is called. What are two possible ways to achieve this goal? ()ASet the Page attribute to AutoEventWireup=False. Remove the attribute onunload=Page_Unload from the Web Form element.BSet the Page attribute to AutoEventWireup=False. Add the attribute OnUnload=Page_Unload to the Web Form element.CSet the Page attribute to AutoEventWireup=False. Add the Web Form attribute autocomplete=on.DSet the Page attribute to AutoEventWireup=True.