单选题You are creating a mobile Web Form that dynamically displays news items. You want to display news items by using an instance of a mobile TextView control named TextViewNews. You need to configure the Web Form that contains TextViewNews. The Web Form mu

题目
单选题
You are creating a mobile Web Form that dynamically displays news items. You want to display news items by using an instance of a mobile TextView control named TextViewNews. You need to configure the Web Form that contains TextViewNews. The Web Form must enable pagination in case a users device does not display the full text of a news item. Which code segment should you use? ()
A

Dim ps As PagerStyle = New PagerStyle()ps.NextPageText = more >ps.PreviousPageText = < backFormNews.Paginate = True

B

FormNews.PagerStyle.NextPageText = more >FormNews.PagerStyle.PreviousPageText = < backTextViewNews.PaginateRecursive(New ControlPager(FormNews, 1000))

C

FormNews.PagerStyle.NextPageText = more >FormNews.PagerStyle.PreviousPageText = < backFormNews.PaginateRecursive(New ControlPager(FormNews, 1000))

D

FormNews.PagerStyle.NextPageText = more >FormNews.PagerStyle.PreviousPageText = < backFormNews.Paginate = True


相似考题
参考答案和解析
正确答案: B
解析: 暂无解析
更多“You are creating a mobile Web Form that dynamically displays”相关问题
  • 第1题:

    You create a mobile Web application. You need to use a Command control to post user input from the UI elements back to the server. What are two possible ways to achieve this goal?()

    • A、Place the Command control within an instance of the System.Web.UI.MobileControls.SelectionList control.
    • B、Place the Command control within an instance of the System.Web.UI.MobileControls.ObjectList control.
    • C、Place the Command control within an instance of the System.Web.UI.MobileControls.Form control.
    • D、Place the Command control within an instance of the System.Web.UI.MobileControls.Panel control.

    正确答案:C,D

  • 第2题:

    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.

    正确答案:B,C

  • 第3题:

    单选题
    You are creating a Web Form. The Web Form allows users to rename or delete products in a list. You create a DataTable named dtProducts that is bound to a GridView. DataTable has the following four rows. dtProducts. Rows(0)("ProductName") = "Soap"dtProducts. Rows(1)("ProductName") = "Book"dtProducts. Rows(2)("ProductName") = "Computer"dtProducts. Rows(3)("ProductName") = "Spoon"dtProducts. AcceptChanges( ) The user utilizes a Web Form to delete the first product. You need to set the RowStateFilter property of the DataTables DefaultView so that only products that have not been deleted are shown. To which value should you set the DataTabless DefaultView.RowStateFilter?()
    A

    Data View Row State.Modified Original

    B

    Data View Row State.Modified Current

    C

    Data View Row State.Current Rows

    D

    Data View Row State.Added


    正确答案: A
    解析: 暂无解析

  • 第4题:

    单选题
    You are creating a Web application that will run on an intranet. The Web application reads comma-delimited text files. The text files reside in a subdirectory below the Web application's root directory. Users must not be able to navigate directly to these files in a Web browser unless they are members of the Accounting role. You need to write an ASP.NET HTTP handler that will use the FileAuthorizationModule class. Which form of authentication should you use?()
    A

     Anonymous

    B

     Certificate

    C

     Forms

    D

    Microsoft Windows Integrated Security


    正确答案: C
    解析: 暂无解析

  • 第5题:

    单选题
    You are creating a Web Form. The Web Form allows users to rename or delete products in a list. You create a DataTable named dtProducts that is bound to a GridView. DataTable has the following four rows. dtProducts. Rows[0]["ProductName"] = “Soap”;dtProducts. Rows[1][“ProductName”]= “Book”;dtProducts. Rows[2][“ProductName”]= “Computer”;dtProducts. Rows[3][“ProductName”]= “Spoon”;dtProducts. AcceptChanges( ); The user utilizes a Web Form to delete the first product. You need to set the RowStateFilter property of the DataTables DefaultView so that only products that have not been deleted are shown. To which value should you set the DataTabless DefaultView.RowStateFilter? ()
    A

    Data V iewRowState.ModifiedOriginal;

    B

    Data V iewRowState.ModifiedCurrent;

    C

    Data V iewRowState.CurrentRows;

    D

    Data V iewRowState.Added;


    正确答案: C
    解析: 暂无解析

  • 第6题:

    单选题
    You have a computer that runs Windows 7 and Windows Internet Explorer 8. You open Internet Explorerand access a Web site. The Web site displays a page that has misaligned text and graphic images. Youverify that the Web page displays correctly in previous versions of Internet Explorer.  You need to view theWeb page correctly. What should you do?()
    A

    Modify the text size.

    B

    Enable Caret Browsing.

    C

    Enable Compatibility View.

    D

    Disable the SmartScreen Filter.


    正确答案: B
    解析: 暂无解析

  • 第7题:

    You are creating a custom user control. The custom user control will be used on 10 Web Forms for an ASP.NET Web site that allows users to register and log on to a personalized experience. The custom user control uses two TextBox controls and two Button controls. You need to ensure that the controls are visible only when users are not logged on to the Web site. You also need to minimize the amount of effort in development and maintenance for the Web site. Which two actions should you perform? ()

    • A、Add the OnClick event handler for the Login button to the code used in the custom user control.
    • B、Add the OnClick event handler for the Login button to the code used in the Web Form where the control is added.
    • C、In the Page_Load method of the Web Form, add a code segment to set the visibility of the TextBox and Button controls where the control is added.
    • D、In the Page_Load method of the custom user control, add a code segment to set the visibility of the TextBox and Button controls.

    正确答案:A,D

  • 第8题:

    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.

    正确答案:C,D

  • 第9题:

    单选题
    You are creating a Windows Forms application for a financial service provider by using the .NET Framework 3.5. You have to implement a multiple document interface (MDI) in the application to allow users to open multiple financial documents simultaneously.You need to ensure that whenever the child MDI form is created, the application displays a message in the title bar of the parent MDI that a child form has received focus.   What should you do?()
    A

    Implement theActivated event

    B

    Implement the MdiChildActivate event

    C

    Override the OnParentVisibleChanged method

    D

    Override the OnParentBindingContextChanged method


    正确答案: D
    解析: 暂无解析

  • 第10题:

    多选题
    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? ()
    A

    Set the Page attribute to AutoEventWireup=False. Remove the attribute onunload=Page_Unload from the Web Form element.

    B

    Set the Page attribute to AutoEventWireup=False. Add the attribute OnUnload=Page_Unload to the Web Form element.

    C

    Set the Page attribute to AutoEventWireup=False. Add the Web Form attribute autocomplete=on.

    D

    Set the Page attribute to AutoEventWireup=True.


    正确答案: A,B
    解析: 暂无解析

  • 第11题:

    单选题
    You are creating a web form with this HTML: 11. 12. 13. 14. 15. Which HTTP method is used when sending this request from the browser?()
    A

    GET

    B

    PUT

    C

    POST

    D

    SEND

    E

    FORM


    正确答案: A
    解析: 暂无解析