PrepAway - Latest Free Exam Questions & Answers

Category: 70-515

Exam 70-515: TS: Web Applications Development with Microsoft .NET Framework 4

What should you do?

You are implementing custom ASP.NET server controls.
You have a base class named RotaryGaugeControl and two subclasses named CompassGaugeControl and SpeedGaugeControl.
Each control requires its own client JavaScript code in order to function properly.
The JavaScript includes functions that are used to create the proper HTML elements for the control.
You need to ensure that the JavaScript for each of these controls that is used in an ASP.NET page is included in the generated HTML page only once, even if the ASP.NET page uses multiple instances of the given control.
What should you do?

What should you do?

You are implementing an ASP.NET page that includes the following drop-down list.

<asp:PlaceHolder ID=”dynamicControls” runat=”server”>
<asp:DropDownList ID=”MyDropDown” runat=”server”>
<asp:ListItem Text=”abc” value=”abc” />
<asp:ListItem Text=”def” value=”def” />
</asp:DropDownList>
</asp:PlaceHolder>

You need to dynamically add values to the end of the drop-down list.
What should you do?

Which two actions should you perform?

You create a custom server control named Task that contains the following code segment. (Line numbers are included for reference only.)

01 namespace DevControls
02 {
03 public class Task : WebControl
04 {
05 [DefaultValue(“”)]
06 public string Title { … }
07
08 protected override void RenderContents(HtmlTextWriter output)
09 {
10 output.Write(Title);
11 }
12 }
13 }

You need to ensure that adding a Task control from the Toolbox creates markup in the following format.

<Dev:Task ID=”Task1″ runat=”server” Title=”New Task” />

Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

Which two actions should you perform?

You use the following declaration to add a Web user control named TestUserControl.ascx to an ASP.NET page named TestPage.aspx.

<uc:TestUserControl ID=”testControl” runat=”server”/>

You add the following code to the code-behind file of TestPage.aspx.

private void TestMethod()
{

}

You define the following delegate.

public delegate void MyEventHandler();

You need to add an event of type MyEventHandler named MyEvent to TestUserControl.ascx and attach the page’s TestMethod method to the event.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

Which two actions should you perform?

You create a Web page named TestPage.aspx and a user control named TestUserControl.ascx.
TestPage.aspx uses TestUserControl.ascx as shown in the following line of code.

<uc:TestUserControl ID=”testControl” runat=”server”/>

On TestUserControl.ascx, you need to add a read-only member named CityName to return the value “New York”.
You also must add code to TestPage.aspx to read this value.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

Which code segment should you add?

You are implementing a method in an ASP.NET application that includes the following requirements.
* Store the number of active bugs in the cache.
* The value should remain in the cache when there are calls more often than every 15 seconds.
* The value should be removed from the cache after 60 seconds.

You need to add code to meet the requirements.
Which code segment should you add?


Page 10 of 11« First...7891011