70-305  Exam

Exam # of questions Description  Update
70-305 202 Developing and Implementing Web Applications with ... 02/15/2011
[Practice Test]    [Download Study Guide(PDF)]   [Update Exam]

70-305 - Exam Information
  • Description: Developing and Implementing Web Applications with Microsoft Visual Basic.NET
  • Passing Score: 0%
  • Practice Test - Number of questions: 202 questions
  • Simulation Test - Number of questions: 202 questions
  • Simulation Test Duration: 120 minutes
  • Has explanations: Yes

Question of the day

You are creating an ASP.NET page for XYZ. You create a DataGrid control that displays past purchases made by the user. The DataGrid control is populated from an existing database when the page is created. The page contains TextBox controls that allow users to update their personal information, such as address and telephone number. You need to ensure that the page is refreshed as quickly as possible when users update their contact information. What should you do?

Answer(s)

  1. Set the Enable property of the DataGrid control to false.
  2. Set the EnableViewState property of the DataGrid to false.
  3. Write code in the Page.Load event handler that populates the DataGrid control only when theIsPostBack property of the page is false.
  4. Write in the Page.Load event handler that populates the DataGrid control only when theIsPostBack property of the page is true.
Correct Answer

Write in the Page.Load event handler that populates the DataGrid control only when theIsPostBack property of the page is true.