It Training and Preparation Tests
70-562 dumps
Exam : Microsoft 70-562
Title : TS: MS .NET Framework 3.5, ASP.NET Application Development
1. You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
You create a Web form and add the following code fragment.
<asp:Repeater runat=”server”
DataSourceID=”SqlDataSource1″
ItemDataBound=”rptData_ItemDataBound”>
<ItemTemplate>
<asp:Label runat=”server”
Text=’<%# Eval(”QuantityOnHand”) %>’ />
</ItemTemplate>
</asp:Repeater>
The SqlDataSource1 DataSource control retrieves the Quantity column values from a table named Products.
You write the following code segment to create the rptData_ItemDataBound event handler. (Line numbers are included for reference only.)
01 Protected Sub rptData_ItemDataBound(ByVal sender As Object, _
02 ByVal e As RepeaterItemEventArgs)
03
04 If lbl IsNot Nothing Then
05 If Integer.Parse(lbl.Text) < 10 Then
06 lbl.ForeColor = Color.Red
07 End If
08 End If
09 End Sub
You need to retrieve a reference to the lblQuantity Label control into a variable named lbl.
Which code segment should you insert at line 03?
A. Dim lbl As Label = _
TryCast(Page.FindControl(”lblQuantity”), Label)
B. Dim lbl As Label = _
TryCast(e.Item.FindControl(”lblQuantity”), Label)
C. Dim lbl As Label = _
TryCast(rptData.FindControl(”lblQuantity”), Label)
D. Dim lbl As Label = _
TryCast(e.Item.Parent.FindControl(”lblQuantity”), Label)
Answer: B
2. You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5.
You create a Web page that contains the following two XML fragments. (Line numbers are included for reference only.)
01 <script runat=”server”>
02
03 </script>
04 <asp:ListView runat=”server”
05 DataSourceID=”SqlDataSource1″
06
07 >
08 <ItemTemplate>
09 <td>
10 <asp:Label runat=”server”
11 Text=’<%# Eval(”LineTotal”) %>’ />
12 </td>
13 </ItemTemplate>
The SqlDataSource1 object retrieves the data from a Microsoft SQL Server 2005 database table. The database table has a column named LineTotal.
You need to ensure that when the size of the LineTotal column value is greater than seven characters, the column is displayed in red color.
What should you do?
A. Insert the following code segment at line 06.
OnItemDataBound=”FmtClr”
Insert the following code segment at line 02.
Protected Sub FmtClr(ByVal sender As Object, _ByVal e As ListViewItemEventArgs)
Dim LineTotal As Label = _
DirectCast(e.Item.FindControl(”LineTotalLabel”), Label)
If LineTotal IsNot Nothing Then
If LineTotal.Text.Length > 7 Then
LineTotal.ForeColor = Color.Red
Else
LineTotal.ForeColor = Color.Black
End If
End If
End Sub
B. Insert the following code segment at line 06.
OnItemDataBound=”FmtClr”
Insert the following code segment at line 02.
Protected Sub FmtClr(ByVal sender As Object, _ByVal e As ListViewItemEventArgs)
Dim LineTotal As Label = _
DirectCast(e.Item.FindControl(”LineTotal”), Label)
If LineTotal.Text.Length > 7 Then
LineTotal.ForeColor = Color.Red
Else
LineTotal.ForeColor = Color.Black
End If
End Sub
C. Insert the following code segment at line 06.
OnDataBinding=”FmtClr”
Insert the following code segment at line 02.
Protected Sub FmtClr(ByVal sender As Object, _ByVal e As EventArgs)
Dim LineTotal As New Label()
LineTotal.ID = “LineTotal”
If LineTotal.Text.Length > 7 Then
LineTotal.ForeColor = Color.Red
Else
LineTotal.ForeColor = Color.Black
End If
End Sub
D. Insert the following code segment at line 06.
OnDataBound=”FmtClr”
Insert the following code segment at line 02.
Protected Sub FmtClr(ByVal sender As Object, _ByVal e As EventArgs)
Dim LineTotal As New Label()
LineTotal.ID = “LineTotalLabel”
If LineTotal.Text.Length > 7 Then
LineTotal.ForeColor = Color.Red
Else
LineTotal.ForeColor = Color.Black
End If
End Sub
Answer: A
3. You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 5.
You create a Web form and add the following code fragment.
<asp:Repeater runat=”server” DataSourceID=”SqlDataSource1″ItemDataBound=”rptData_ItemDataBound”>
<ItemTemplate>
<asp:Label runat=”server”
Text=’<%# Eval(”QuantityOnHand”) %>’ />
</ItemTemplate>
</asp:Repeater>
The SqlDataSource1 DataSource control retrieves the Quantity column values from a table named Products.
You write the following code segment to create the rptData_ItemDataBound event handler. (Line numbers are included for reference only.)
01 protected void rptData_ItemDataBound(object sender,
02 RepeaterItemEventArgs e)
03 {
04
05 if(lbl != null)
06 if(int.Parse(lbl.Text) < 10)
07 lbl.ForeColor = Color.Red;
08 }
You need to retrieve a reference to the lblQuantity Label control into a variable named lbl.
Which code segment should you insert at line 04?
A. Label lbl = Page.FindControl(”lblQuantity”) as Label;
B. Label lbl = e.Item.FindControl(”lblQuantity”) as Label;
C. Label lbl = rptData.FindControl(”lblQuantity”) as Label;
D. Label lbl = e.Item.Parent.FindControl(”lblQuantity”) as Label;
Answer: B
4. You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.
Your application has a user control named UserCtrl.ascx. You write the following code fragment to create a Web page named Default.aspx.
<%@ Page AutoEventWireup=”true”
CodeFile=”Default.aspx.cs” Inherits=”_Default” %>
<html>
…
<body>
<form runat=”server”>
<div>
<asp:Label runat=”server”></asp:Label>
<asp:Label runat=”server”></asp:Label>
</div>
</form>
</body>
</html>
You need to dynamically add the UserCtrl.ascx control between the lblHeader and lblFooter Label controls.
What should you do?
A. Write the following code segment in the Init event of the Default.aspx Web page.
Control ctrl = LoadControl(”UserCtrl.ascx”);
this.Controls.AddAt(1, ctrl);
B. Write the following code segment in the Init event of the Default.aspx Web page.
Control ctrl = LoadControl(”UserCtrl.ascx”);
lblHeader.Controls.Add(ctrl);
C. Add a Literal control named Ltrl between the lblHeader and lblFooter label controls.
Write the following code segment in the Init event of the Default.aspx Web page.
Control ctrl = LoadControl(”UserCtrl.ascx”);
D. Add a PlaceHolder control named PlHldr between the lblHeader and lblFooter label controls.
Write the following code segment in the Init event of the Default.aspx Web page.
Control ctrl = LoadControl(”UserCtrl.ascx”);
PlHldr.Controls.Add(ctrl);
Answer: D
High quality and Value for the 70-562 Exam. 70-562 simulation study materials, including the examination questions and the answers, complete by our senior IT lecturers and the Certinside product experts, included the current newest 70-562 exam questions.
A wealth of preparation 70-562 study materials and 70-562 training exams are available for you. When you are ready to prepare for 70-562 exam, here’s where you should start.
The Most Popular Posts
Comments are closed.