QUESTION 1
You are creating an ASP.NET Web site. The site has a master page named Custom.master. The code-behind file for Custom.master contains the following code segment.
Partial Public Class Custom Inherits System.Web.UI.MasterPage
Public Property Region As String
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
End Class
You create a new ASP.NET page and specify Custom.master as its master page.
You add a Label control named lblRegion to the new page.
You need to display the value of the master page’s Region property in lblRegion.
What should you do?
A. |
Add the following code segment to the Page_Load method of the page code-behind file. Dim custom As Custom = Me.Parent lblRegion.Text = custom.Region |
B. |
Add the following code segment to the Page_Load method of the page code-behind file. Dim custom As Custom = Me.Master lblRegion.Text = custom.Region |
C. |
Add the following code segment to the Page_Load method of the Custom.Master.vb code-behind file. Dim lblRegion As Label = Page.FindControl(“lblRegion”) lblRegion.Text = Me.Region |
D. |
Add the following code segment to the Page_Load method of the Custom.Master.vb code-behind file. Dim lblRegion As Label = Master.FindControl(“lblRegion”) lblRegion.Text = Me.Region |
Correct Answer: B
QUESTION 2
You have created an ASP.NET server control named ShoppingCart for use by other developers. Some developers report that the ShoppingCart control does not function properly with ViewState disabled. You want to ensure that all instances of the ShoppingCart control work even if ViewState is disabled. What should you do?
A. |
Require developers to set EnableViewStateMac to true. |
B. |
Store state in ControlState instead of ViewState. |
C. |
Serialize the state into an Application state entry called “MyControl”. |
D. |
Require developers to change the session state mode to SQLServer. |
Correct Answer: B
QUESTION 3
You are implementing an ASP.NET Web site that will be accessed by an international audience. The site contains global and local resources for display elements that must be translated into the language that is selected by the user. You need to ensure that the Label control named lblCompany displays text in the users selected language from the global resource file. Which control markup should you use?
A. |
<asp:Label ID=”lblCompany” runat=”server” meta:resourcekey=”lblCompany” /> |
B. |
<asp:Label ID=”lblCompany” runat=”server” Text=”meta:lblCompany.Text” /> |
C. |
<asp:Label ID=”lblCompany” runat=”server” Text=”<%$ Resources:lblCompanyText %>” /> |
D. |
<asp:Label ID=”lblCompany” runat=”server” Text=”<%$ Resources:WebResources, lblCompanyText %>” /> |
Correct Answer: D
QUESTION 4
You are developing an ASP.NET Web page that contains input controls, validation controls, and a button named btnSubmit.
The page has the following code-behind. (Line numbers are included for reference only.)
01 Public Class _Default
02 Inherits System.Web.UI.Page
03
04 Protected Sub SaveToDatabase()
05
06 End Sub
07
08 Protected Sub btnSubmit_Click(ByVal sender As Object,
09 ByVal e As EventArgs) Handles btnSubmit.Click
10
11 End Sub
12
13 End Class
You need to ensure that all data that is submitted passes validation before the data is saved in a database. What should you do?
A. |
Add the following method override. Protected Overrides Sub OnInit(ByVal e As EventArgs) MyBase.OnInit(e) If (Page.IsValid) Then Me.SaveToDatabase() End Sub |
B. |
Add the following method override. Protected Overrides Sub OnLoad(ByVal e As EventArgs) MyBase.OnLoad(e) If (Page.IsValid) Then Me.SaveToDatabase() End Sub |
C. |
Add the following method override. Protected Overrides Sub OnPreRender(ByVal e As EventArgs) MyBase.OnPreRender(e) If (Page.IsValid) Then Me.SaveToDatabase() End Sub |
D. |
Add the following code segment at line 10. If (Page.IsValid) Then Me.SaveToDatabase() |
Correct Answer: D
QUESTION 5
You are implementing an ASP.NET application that uses data-bound GridView controls in multiple pages. You add JavaScript code to periodically update specific types of data items in these GridView controls. You need to ensure that the JavaScript code can locate the HTML elements created for each row in these GridView controls, without needing to be changed if the controls are moved from one page to another. What should you do?
A. |
Replace the GridView control with a ListView control. |
B. |
Set the ClientIDMode attribute to Predictable in the web.config file. |
C. |
Set the ClientIDRowSuffix attribute of each unique GridView control to a different value. |
D. |
Set the @ OutputCache directives VaryByControl attribute to the ID of the GridView control. |
Correct Answer: C
QUESTION 6
You are developing an ASP.NET Web application. You create a master page. The master page requires a region where you can add page-specific content by using the ASP.NET page designer. You need to add a control to the master page to define the region. Which control should you add?
A. |
Content |
B. |
ContentPlaceHolder |
C. |
PlaceHolder |
D. |
Substitution |
Correct Answer: B
QUESTION 7
You create an ASP.NET page named TestPage.aspx that contains validation controls. You need to verify that all input values submitted by the user have been validated by testing the Page.IsValid property. Which page event should you add an event handler to?
A. |
Init |
B. |
Load |
C. |
PreInit |
D. |
PreLoad |
Correct Answer: B
QUESTION 8
You are developing an ASP.NET Web application. Application data is stored in a Microsoft SQL Server 2008 database. You configure a connection string named cnnContoso. The application must cache the data that is returned from the database by using this connection string. You need to ensure that the application checks the database every 10 seconds. What should you do?
A. |
Add the following configuration to the <system.web> section of the web.config file. <caching> <outputCacheSettings> <outputCacheProfiles> <add name=”cnnContoso” duration=”10″ /> </outputCacheProfiles> </outputCacheSettings> </caching> |
B. |
Add the following configuration to the <system.web> section of the web.config file. <caching> <sqlCacheDependency enabled=”true” pollTime=”10000″> <databases> <add name=”ContosoDatabase” connectionStringName=”cnnContoso” /> </databases> </sqlCacheDependency> </caching> |
C. |
Add the following @ Page directive to pages that query the database. <%@ OutputCache Duration=”10″ VaryByParam=”cnnContoso” %> |
D. |
Add the following @ Page directive to pages that query the database. <%@ OutputCache Duration=”10000″ VaryByParam=”cnnContoso” %> |
Correct Answer: B
QUESTION 9
You are troubleshooting an ASP.NET Web application. System administrators have recently expanded your web farm from one to two servers. Users are periodically reporting an error message about invalid view state. You need to fix the problem. What should you do?
A. |
Set viewStateEncryptionMode to Auto in web.config on both servers. |
B. |
Set the machineKey in machine.config to the same value on both servers. |
C. |
Change the session state mode to SQLServer on both servers and ensure both servers use the same connection string. |
D. |
Override the SavePageStateToPersistenceMedium and LoadPageStateFromPersistenceMedium methods in the page base class to serialize the view state to a local web server file. |
Correct Answer: B
QUESTION 10
You are implementing an ASP.NET application that includes a page named TestPage.aspx. TestPage.aspx uses a master page named TestMaster.master.
You add the following code to the TestPage.aspx code-behind file to read a TestMaster.master public property named CityName.
Protected Sub Page_Load(ByVal sender As Object,
ByVal e As System.EventArgs) Handles Me.Load
Dim s As String = Master.CityName
End Sub
You need to ensure that TestPage.aspx can access the CityName property. What should you do?
A. |
Add the following directive to TestPage.aspx. <%@ MasterType VirtualPath=”~/TestMaster.master” %> |
B. |
Add the following directive to TestPage.aspx. <%@ PreviousPageType VirtualPath=”~/TestMaster.master” %> |
C. |
Set the Strict attribute in the @ Master directive of the TestMaster.master page to true. |
D. |
Set the Explicit attribute in the @ Master directive of the TestMaster.master page to true. |
Correct Answer: A
Instant Access to Download Testing Software & PDF File for Microsoft 70-515 Real Exam
Instant Access to Try Microsoft 70-515 Free Demo
100-105 Dumps VCE PDF
200-105 Dumps VCE PDF
300-101 Dumps VCE PDF
300-115 Dumps VCE PDF
300-135 Dumps VCE PDF
300-320 Dumps VCE PDF
400-101 Dumps VCE PDF
640-911 Dumps VCE PDF
640-916 Dumps VCE PDF
70-410 Dumps VCE PDF
70-411 Dumps VCE PDF
70-412 Dumps VCE PDF
70-413 Dumps VCE PDF
70-414 Dumps VCE PDF
70-417 Dumps VCE PDF
70-461 Dumps VCE PDF
70-462 Dumps VCE PDF
70-463 Dumps VCE PDF
70-464 Dumps VCE PDF
70-465 Dumps VCE PDF
70-480 Dumps VCE PDF
70-483 Dumps VCE PDF
70-486 Dumps VCE PDF
70-487 Dumps VCE PDF
220-901 Dumps VCE PDF
220-902 Dumps VCE PDF
N10-006 Dumps VCE PDF
SY0-401 Dumps VCE PDF