单项选择题
You are deploying an ASP.NET Web application to a remote server. You need to choose a deployment method that will ensure that all IIS settings, in addition to the Web content, will deploy to the remote server. Which deployment method should you choose?()
A.the XCOPY command-line tool
B.the Copy Web Site tool
C.the Web Deployment tool
D.the Publish Web Site utility
相关考题
-
多项选择题
YouaredevelopinganASP.NETapplicationbyusingVisualStudio2010.Youneedtointeractivelydebugtheentireapplication.Whichtwoactionsshouldyouperform?()
A.Set the Debug attribute of the compilation node of the web.config file to true.
B.Add a DebuggerDisplay attribute to the code-behind file of the page that you want to debug.
C.Select the ASP.NET debugger option in the project properties.
D.Define the DEBUG constant in the project settings. -
单项选择题
YouarecreatinganASP.NETWebsite.Thesitecontainspagesthatareavailabletoanonymoususers.ThesitealsocontainsapagenamedPremium.aspxthatprovidespremiumcontenttoonlymembersofagroupnamedSubscribers.Youneedtomodifytheweb.configfiletoensurethatPremium.aspxcanbeaccessedbyonlymembersoftheSubscribersgroup.Whichconfigurationshouldyouuse?()
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 Web service returns a list of system users in the following format. You need to populate a drop-down menu with the IDs and names of the users from the Web service, in the order provided by the service. Which code segment should you use?()
A.$.ajax({type: "GET", url: serviceURL, success: function(xml) { $.each($(xml), function(i, item) { $("").attr("value", id).text(tx).appendTo("#dropdown"); }); } });
B.$.ajax({ type: "GET", url: serviceURL, success: function(xml) { $(xml).find("user").each(function() { var id = $(this).id; var tx = $(this).name.text $("").attr("value", id).text(tx).appendTo("#dropdown"); }); } });
C.$.ajax({ type: "GET", url: serviceURL, success: function(xml) { $(xml).find("user").each(function() { var id = $(this).attr("id"); var tx = $(this).find("name").text();$("").attr("value", id).text(tx).appendTo("#dropdown"); }); } });
D. $.ajax({ type: "GET", url: serviceURL, success: function(xml) { xml.find("user").each(function(node) { var id = $(node).attr("id"); var tx = $(node).find("name").text(); $("").attr("value", id).text(tx).appendTo("#dropdown"); }); } });
