中文字幕在线一区二区在线,久久久精品免费观看国产,无码日日模日日碰夜夜爽,天堂av在线最新版在线,日韩美精品无码一本二本三本,麻豆精品三级国产国语,精品无码AⅤ片,国产区在线观看视频

      微軟認(rèn)證考試試題庫(kù)及答案

      時(shí)間:2024-08-25 19:08:00 微軟認(rèn)證 我要投稿
      • 相關(guān)推薦

      2016年微軟認(rèn)證考試試題庫(kù)及答案

        1.You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.

      2016年微軟認(rèn)證考試試題庫(kù)及答案

        You create a Web form in the application by using the following code fragment. (Line numbers are included for reference only.)

        01

        07

        08

        09 runat="server" />

        10

        11

        12 UpdateMode="Conditional" runat="server">

        13

        14

        15

        16 Text="Submit" OnClick="Button_Handler" />

        17

        18

        19

        You plan to create a client-side script code by using ASP.NET AJAX.

        You need to ensure that while a request is being processed, any subsequent Click events on the btnSubmit Button control are suppressed.

        Which code fragment should you insert at line 10?

        A.

        B.

        C.

        D.

        Answer: C

        2.You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.

        You write the following code segment to create a JavaScript file named CalculatorScript.js.

        function divide(a, b) {

        if (b == 0) {

        var errorMsg = Messages.DivideByZero;

        alert(errorMsg); return null;

        }

        return a/b;

        }

        You embed the CalculatorScript.js file as a resource in a Class Library project.

        The namespace for this project is Calculator.Resources.

        The JavaScript function retrieves messages from a resource file named MessageResources.resx by using the JavaScript Messages object.

        You add an AJAX Web form in the ASP.NET application. You reference the Class Library in the application.

        You add an ASP.NET AJAX ScriptReference element to the AJAX Web form.

        You need to ensure that the JavaScript function can access the error messages that are defined in the resource file.

        Which code segment should you add in the AssemblyInfo.cs file?

        A.

        [assembly: ScriptResource ("CalculatorScript", "MessageResources", "Messages")]

        B.

        [assembly: ScriptResource ("CalculatorScript.js", "MessageResources.resx", "Messages")]

        C.

        [assembly: ScriptResource ("Calculator.Resources.CalculatorScript.js", "Calculator.Resources.MessageResources", "Messages")]

        D.

        [assembly: ScriptResource ("Calculator.Resources.CalculatorScript", "Calculator.Resources.MessageResources.resx", "Messages")]

        Answer: C

        3.You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.

        You create an AJAX-enabled Web form by using the following code fragment.

        ...

        When the updFirstPanel UpdatePanel control is updated, a dynamic client script is registered.

        You write the following code segment in the code-behind file of the Web form. (Line numbers are included for reference only.)

        01 protected void Page_Load(object sender, EventArgs e)

        02 {

        03 if(IsPostBack)

        04 {

        05 string generatedScript = ScriptGenerator.GenerateScript();

        06

        07 }

        08 }

        You need to ensure that the client-script code is registered only when an asynchronous postback is issued on the updFirstPanel UpdatePanel control.

        Which code segment should you insert at line 06?

        A.

        ClientScript.RegisterClientScriptBlock(typeof(TextBox), "txtInfo_Script", generatedScript);

        B.

        ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "txtInfo_Script", generatedScript, false);

        C.

        ClientScript.RegisterClientScriptBlock(typeof(Page), "txtInfo_Script", generatedScript);

        D.

        ScriptManager.RegisterClientScriptBlock(txtInfo, typeof(TextBox), "txtInfo_Script", generatedScript, false);

        Answer: D

        4.You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.

        The application contains the following code segment.

        public class CapabilityEvaluator {

        public static bool ChkScreenSize( System.Web.Mobile.MobileCapabilities cap, String arg) {

        int screenSize = cap.ScreenCharactersWidth * cap.ScreenCharactersHeight;

        return screenSize < int.Parse(arg);

        }

        }

        You add the following device filter element to the Web.config file.

        You need to write a code segment to verify whether the size of the device display is less than 80 characters.

        Which code segment should you use?

        A.

        MobileCapabilities currentMobile; currentMobile = Request.Browser as MobileCapabilities;

        if(currentMobile.HasCapability("FltrScreenSize","80")) {

        }

        B.

        MobileCapabilities currentMobile; currentMobile = Request.Browser as MobileCapabilities;

        if(currentMobile.HasCapability( "FltrScreenSize","").ToString()=="80") {

        }

        C.

        MobileCapabilities currentMobile; currentMobile = Request.Browser as MobileCapabilities;

        if (currentMobile.HasCapability( "CapabilityEvaluator.ChkScreenSize", "80")) {

        }

        D.

        MobileCapabilities currentMobile; currentMobile = Request.Browser as MobileCapabilities;

        if (currentMobile.HasCapability( "CapabilityEvaluator.ChkScreenSize", "").ToString()=="80") {

        }

        Answer: A

        5.You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. The application has a mobile Web form that contains the following ObjectList control.

        You create an event handler named ObjectListCtrl_ItemCommand.

        You need to ensure that the ObjectListCtrl_ItemCommand handler detects the selection of the CmdDisplayDetails item.

        Which code segment should you write?

        A.

        public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

        if (e.CommandName == "CmdDisplayDetails") {

        } }

        B.

        public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

        if (e.CommandArgument.ToString() == "CmdDisplayDetails") {

        } }

        C.

        public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

        ObjectListCommand cmd = sender as ObjectListCommand;

        if (cmd.Name == "CmdDisplayDetails") {

        } }

        D.

        public void ObjectListCtrl_ItemCommand( object sender, ObjectListCommandEventArgs e) {

        ObjectListCommand cmd = e.CommandSource as ObjectListCommand;

        if (cmd.Name == "CmdDisplayDetails") {

        } }

        Answer: A

      【微軟認(rèn)證考試試題庫(kù)及答案】相關(guān)文章:

      2017微軟認(rèn)證考試flash習(xí)題及答案10-23

      微軟認(rèn)證考試試題及答案「經(jīng)典版」08-21

      微軟認(rèn)證經(jīng)典習(xí)題及答案10-25

      微軟認(rèn)證考試最新認(rèn)證07-11

      2017微軟認(rèn)證考試aspnet模擬練習(xí)及答案08-11

      2017微軟認(rèn)證考試復(fù)習(xí)題及答案09-19

      2016年微軟認(rèn)證考試試題及答案09-23

      2017年微軟認(rèn)證考試試題及答案10-17

      微軟認(rèn)證考試的流程10-06

      微軟認(rèn)證考試技巧10-22

      主站蜘蛛池模板: 中文字幕av日韩精品一区| 国产乱人伦偷精品视频| 蜜桃av多人一区二区三区| 女人被躁到高潮嗷嗷叫免费软| 桓台县| 女优免费中文字幕在线| A阿V天堂免费无码专区| 人妻少妇精品系列一区二区| 溆浦县| 91精品国产高清久久久久| 午夜国产精品久久久久| 无码高潮久久一级一级喷水| 游戏| 亚洲福利av一区二区| 狠狠躁夜夜躁人人爽天天不卡| 亚洲va在线va天堂va四虎| av大片在线无码永久免费网址| 施秉县| 黔南| 宜兰市| 美腿丝袜av在线播放| 一区二区在线中文字幕| 日本午夜理伦三级好看| 精品欧洲AV无码一区二区免费| 日本精品一区二区在线看| 蜜桃视频一区在线观看| 一级少妇无遮掩内射免费| 国产精品无码久久久久下载| 日本高清视频一区二区在线播放| SHOW| 人妻精品一区二区在线视频| 日本不卡一区二区高清中文| 国产粉嫩美女一区二区三| 亚洲综合久久久中文字幕| 亚洲国产一区二区在线| 色婷婷亚洲十月十月色天| 538在线视频| 蜜桃av观看亚洲一区二区| 国产色婷婷亚洲99精品| 91久久国产自产拍夜夜嗨| 国产精品免费av一区二区|