PrepAway - Latest Free Exam Questions & Answers

Which two actions should you perform?

You are implementing an ASP.NET AJAX page. You add the following control to the page.
<asp:UpdatePanel ID=”pnl1″ runat=”server” UpdateMode=”Conditional”>
<ContentTemplate> … </ContentTemplate>
</asp:UpdatePanel>
You need update the contents of the UpdatePanel without causing a full reload of the page. Which
two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

PrepAway - Latest Free Exam Questions & Answers

A.
Add the following control before the UpdatePanel.
<asp:Timer ID=”Timer1″ OnLoad=”Timer1_Tick” runat=”server” Interval=”3000″ />

B.
Add the following control within the UpdatePanel.
<asp:Timer ID=”Timer1″ OnLoad=”Timer1_Tick” runat=”server” Interval=”3000″ />

C.
Add an AsyncPostBackTrigger that references Timer1.

D.
Add a PostBackTrigger that references Timer1.

Explanation:

AsyncPostBackTrigger defines a control and optional event of the control as an asynchronous
postback control trigger that causes an UpdatePanel control to refresh. PostBackTrigger defines a
control inside a UpdatePanel control as a postback control.
CHAPTER 9 Working with Client-Side Scripting, AJAX, and jQuery
Lesson 1: Creating AJAX-Enabled Web Forms
The UpdatePanel Control – Controlling partial-page updates (page 461)
http://mcpd.somee.com/515/515.htm
http://stackoverflow.com/questions/7180387/mcts-ajax-question
http://www.netsqlinterviewquestions.com/questions/88_Practice_Exam_70-515TS-WebApplications-Development-with-Microsoft-NET-Framework-4-Paper- 1.aspx?qID=6455&PaperID=88

One Comment on “Which two actions should you perform?


Leave a Reply