( )is a standard way of specifying the location of an object, typically a web page on the Internet.A.URLB.TCP/IPC.HTMLD.www

( )is a standard way of specifying the location of an object, typically a web page on the Internet.

A.URL
B.TCP/IP
C.HTML
D.www

参考解析

解析:

相关考题:

You create a Web site. You add an EditorZone control to the home page on the Web site. You need to enable users to customize the size and location of the Web Parts on their home pages.Which two controls should you add to the EditorZone control?()A. BehaviorEditorPartB. AppearanceEditorPartC. PropertyGridEditorPartD. LayoutEditorPart

GiventhisfragmentfromaJavaEEdeploymentdescriptor:341.error-page342.exception-typejava.lang.Throwable/exception-type343.location/mainError.jsp/location344./error-page345.error-page346.exception-typejava.lang.ClassCastException/exception-type347.location/castError.jsp/location348./error-pageIfthewebapplicationassociatedwiththefragmentabovethrowsaClassCastException.Whichstatementistrue?()A.Thedeploymentdescriptorisinvalid.B.ThecontainerinvokesmainError.jsp.C.ThecontainerinvokescastError.jsp.D.NeithermainError.jspnorcastError.jspisinvoked.

AJSPpagecontainsataglibdirectivewhoseuriattributehasthevaluedbtags.WhichXMLelementwithinthewebapplicationdeploymentdescriptordefinestheassociatedTLD?() A.tlduridbtags/urilocation/WEB-INF/tlds/dbtags.tld/location/tldB.tagliburidbtags/urilocation/WEB-INF/tlds/dbtags.tld/location./taglibC.tld.tld-uridbtags/tld-uri.tld-location/WEB-INF/tlds/dbtags.tld/tld-location./tldD.taglibtaglib-uridbtags/taglib-uritaglib-location/WEB-INF/tlds/dbtags.tld./taglib-location./taglib

There are many forms of online advertising. ( )is a small rectangular object on a and includes a hyperlink to the Web page that displays a stationary or moving advertisers Web site.A.A text ad B.A site sponsorship ad C.A pop-up ad D.A banner ad

There are many forms of online advertising. ______ is a small rectangular object on a Web page that displays a stationary or moving graphic and includes a hyperlink to the advertiser's Web site.A.A text adB.A site sponsorship adC.A pop-up adD.A banner ad

You create a Web site that stores users' active themes in user profile objects. You need to apply users' preferred themes when they log on to the Web site. What should you do? ()A、In the InitComplete event handler, set the Theme property of the Page object based on the user profile.B、In the PreLoad event handler, set the Theme property of the Page object based on the user profile.C、In the OnLoad event handler, set the Theme property of the Page object based on the user profile.D、In the PreInit event handler, set the Theme property of the Page object based on the user profile.

Which of the following parameter sets must be configured on the Cisco Wireless Location Appliance?()A、network connectionsB、location viewsC、access pointsD、object definitions

Which the JSTL code snippet can be used to import content from another web resource?()A、 c:import url=*foo.jsp”/ B、 c:import page=*foo.jsp”/ C、 c:include url=*foo.jsp”/ D、 c:include page=*foo.jsp”/ E、 Importing cannot be done in JSTL. A standard action must be used instead.

You create a Web page named TestPage.aspx and a user control named contained in a file named TestUserControl.ascx.You need to dynamically add TestUserControl.ascx to TestPage.aspx. Which code segment should you use?()A、protected void Page_Load(object sender, EventArgs e) { Control userControl=Page.LoadControl("TestUserControl.ascx"); Page.Form.Controls.Add(userControl); }B、protected void Page_Load(object sender, EventArgs e) { Control userControl = Page.FindControl("TestUserControl.ascx"); Page.Form.Controls.Load(userControl); }C、protected void Page_PreInit(object sender, EventArgs e) { Control userControl =Page.LoadControl("TestUserControl.ascx");Page.Form.Controls.Add(userControl); }D、protected void Page_PreInit(object sender, EventArgs e) { Control userControl = Page.FindControl("TestUserControl.ascx"); Page.Form.Controls.Load(userControl); }

You need to ensure that Web1, Web2, and Web3 download updates from WSUS1. What should you do?()A、Modify the Default Domain Policy Group Policy object (GPO).B、Modify the local computer policy on Web1, Web2, and Web3.C、Import a security policy template toWeb1, Web2, and Web3.D、Create a service location (SRV) record in the _msdcs.graphicsdesigninstitute.com DNS zone.

You are working on an existing Web site. You need to secure the Web site by redirecting all users to the logon page, Login.aspx. After logging on, users must be sent back to the page that they originally requested. Which code segment should you use? ()A、 In the Web.config file: authorization deny users=”?”//authorization On each page in the Web site: void Page_Load(Object sender, EventArgs E){ FormsAuthentication.Initialize(); //Rest of the Page_Load code goes here}B、On each page in the Web site: void Page_Load(Object sender, EventArgs E){ FormsAuthentication.RedirectToLoginPage(“login.aspx”); //Rest of the Page_Load code goes here}C、On each page in the Web site: void Page_Load(Object sender, EventArgs E){ Response.Redirect(“login.aspx”);//Rest of the Page_Load code goes here}D、In the Web.config file: authentication mode=”Forms” forms name=”.ASPXUSERDEMO” loginUrl=”login.aspx” protection=”All”timeout=”60” / /authentication

你在创建一个 Web 窗体。这个 Web 窗体允许用户计算值并在名为 lblResults 的 Label 控件中显示结果。你需要在 Web 窗体通过 Error 事件截获所有未处理的异常并显示异常在 Web 窗体上。你可以使用下面那个代码段实现?()A、protected void Page_Error(object sender, EventArgs e) { lblResults.Text = e.ToString();e=null;}B、protected void Page_Error(object sender, EventArgs e) { lblResults.Text =Server.GetLastError().ToStri();Server.ClearError();}C、protected void Page_Error(object sender, EventArgs e) Response.Write(e.ToString());e=null;}D、protected void Page_Error(object sender, EventArgs e) Response.Write(Server.GetLastError().ToString()); Server.ClearError();}

You create a Web Form. The Web Form allows users to calculate values and display the results in a label named lblResults. You need to capture all unhandled exceptions on the Web Form through the Error event. The Error event must capture each unhandled exception and display it on the Web Form. Which code segment should you use? ()A、Protected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error lblResults.Text = e.ToString() e = NothingEnd SubB、Protected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error lblResults.Text = Server.GetLastError().ToString() Server.ClearError()End SubC、Protected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error Response.Write(e.ToString()) e = NothingEnd SubD、Protected Sub Page_Error(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Error Response.Write(Server.GetLastError().ToString()) Server.ClearError()End Sub

You create a Web application. You need to turn on Tracing for a page that is not performing well. You must store the trace information in a database for reporting and trending. Which two actions should you perform? ()A、Add a TraceContextEventHandler to the Trace.TraceFinished event to add the trace records into the database.B、Add a system.diagnostics section to the Web.config file. Then add a listener to the new section.C、Use the System.Diagnostics.Trace object to connect to a database. Then insert the trace records.D、In the Page_Load for the page, place the Trace.Write call into a SQL INSERT statement.

You create a Web site. You add an EditorZone control to the home page on the Web site. You need to enable users to customize the size and location of the Web Parts on their home pages. Which two controls should you add to the EditorZone control?()A、BehaviorEditorPartB、AppearanceEditorPartC、PropertyGridEditorPartD、LayoutEditorPart

You are creating an ASP.NET Web site. The site contains pages that are available to anonymous users. The site also contains a page named Premium.aspx that provides premium content to only members of a group named Subscribers. You need to modify the web.config file to ensure that Premium.aspx can be accessed by only members of the Subscribers group. Which configuration should you use?()A、location path="Premium.aspx" system.web authorization allow users="Subscribers"/            deny users="*"/ /authorization /system.web /location B、location path="Premium.aspx" system.web authorization allow roles="Subscribers"/             deny users="*"/ /authorization /system.web /location C、location path="Premium.aspx" system.web authorization allow roles="Subscribers"/             deny users="?"/ /authorization /system.web /location D、location path="Premium.aspx" system.web authorization deny users="*"/ allow roles="Subscribers"/ /authorization /system.web /location

单选题A JSP page contains a taglib directive whose uri attribute has the value dbtags. Which XML element withinthe web application deployment descriptor defines the associated TLD?()Atlduridbtags/urilocation/WEB-INF/tlds/dbtags.tld/location/tldBtagliburidbtags/urilocation/WEB-INF/tlds/dbtags.tld/location. /taglibCtld. tld-uridbtags/tld-uri. tld-location/WEB-INF/tlds/dbtags.tld/tld-location . /tldDtaglibtaglib-uridbtags/taglib-uritaglib-location/WEB-INF/tlds/dbtags.tld. /taglib-location. /taglib

单选题You are working on an existing Web site. You need to secure the Web site by redirecting all users to the logon page, Login.aspx. After logging on, users must be sent back to the page that they originally requested. Which code segment should you use? ()AIn the Web.config file: authorization deny users=? //authorization On each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load FormsAuthentication.Initialize() End SubBOn each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load FormsAuthentication RedirectToLoginPage(login.aspx) End SubCOn each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load Response.Redirect(login.aspx) End SubDIn the Web.config file: authentication mode=Forms forms name=.ASPXUSERDEMO loginUrl=login.aspx protection=All timeout=60 //authentication

单选题You create a Web site that stores users' active themes in user profile objects. You need to apply users' preferred themes when they log on to the Web site. What should you do? ()AIn the InitComplete event handler, set the Theme property of the Page object based on the user profile.BIn the PreLoad event handler, set the Theme property of the Page object based on the user profile.CIn the OnLoad event handler, set the Theme property of the Page object based on the user profile.DIn the PreInit event handler, set the Theme property of the Page object based on the user profile.

单选题You are creating an ASP.NET Web site. The site contains pages that are available to anonymous users. The site also contains a page named Premium.aspx that provides premium content to only members of a group named Subscribers. You need to modify the web.config file to ensure that Premium.aspx can be accessed by only members of the Subscribers group. Which configuration should you use?()Alocation path=Premium.aspx system.web authorization allow users=Subscribers/            deny users=*/ /authorization /system.web /location Blocation path=Premium.aspx system.web authorization allow roles=Subscribers/             deny users=*/ /authorization /system.web /location Clocation path=Premium.aspx system.web authorization allow roles=Subscribers/             deny users=?/ /authorization /system.web /location Dlocation path=Premium.aspx system.web authorization deny users=*/ allow roles=Subscribers/ /authorization /system.web /location

单选题In a JSP-centric web application, you need to create a catalog browsing JSP page. The catalog is stored asa List object in the catalog attribute of the webapp’s ServletContext object.  Which scriptlet code snippetgives you access to the catalog object?()A% List catalog = config.getAttribute(catalog); %B% List catalog = context.getAttribute(catalog); %C% List catalog = application.getAttribute(catalog); %D% List catalog = servletContext.getAttribute(catalog); %

多选题You create Web sites for your company. You apply a consistent design to the pages and controls of the Web sites. You need to make style changes to all of the Web sites on the Web server. You want to achieve this goal without having to edit the individual pages on each Web site. Which two actions should you perform? ()APlace a theme in the App_Themes directory under the application root directory.BPlace a theme under an ASP.NETClientFiles folder under the ASP.NET installation directory.CAssign a theme by setting the %@ Page Theme=... % directive to the name of the application theme.DAssign a theme by specifying the pages theme=.../ section in the Web.config file.

单选题You create a Web Form. The Web Form allows users to calculate values and display the results in a label named lblResults. You need to capture all unhandled exceptions on the Web Form through the Error event. The Error event must capture each unhandled exception and display it on the Web Form. Which code segment should you use?()Aprotected void Page_Error(object sender, EventArgs e) { lblResults.Text = e.ToString(); e=null;}Bprotected void Page_Error(object sender, EventArgs e) { lblResults.Text = Server.GetLastError().ToString(); Server.ClearError();}Cprotected void Page_Error(object sender, EventArgs e) Response.Write(e.ToString()); e=null;}Dprotected void Page_Error(object sender, EventArgs e) Response.Write(Server.GetLastError().ToString()); Server.ClearError();}

单选题You need to create a JavaBean object that is used only within the current JSP page. It must NOT beaccessible to any other page including those that this page might import. Which JSP standard action canaccomplish this goal?()Ajsp:useBean id=’pageBean’ type=’com.example.MyBean’ /Bjsp:useBean id=’pageBean’ class=’com.example.MyBean’ /Cjsp:makeBean id=’pageBean’ type=’com.example.MyBean’ /Djsp:makeBean id=’pageBean’ class=’com.example.MyBean’ /

多选题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.

单选题Which the JSTL code snippet can be used to import content from another web resource?()A c:import url=*foo.jsp”/ B c:import page=*foo.jsp”/ C c:include url=*foo.jsp”/ D c:include page=*foo.jsp”/ E Importing cannot be done in JSTL. A standard action must be used instead.