MS.NET Framework 2.0-Web-based Client Development:70-528VB
科目编号:70-528VB
科目名称:MS.NET Framework 2.0-Web-based Client Development
描述:
70-528VB 考试是 Microsoft 公司的 MS.NET Framework 2.0-Web-based Client Development 认证考试官方代号,kaoccna 的 70-528VB 权威考试题库软件是 Microsoft 认证厂商的授权产品,kaoccna 绝对保证顺利通过,否则承诺全额退款!
MS.NET Framework 2.0-Web-based Client Development 认证作为全球IT领域专家 Microsoft 热门认证之一,是许多大中 IT 企业选择人才标准的必备条件。 如果你正在准备 70-528VB 考试,为 Microsoft MS.NET Framework 2.0-Web-based Client Development认证做最后冲刺,又苦于没有绝对权威的考试真题模拟
mcsepass 实行"一次不过全额退款"承诺。如果您购买我们 70-528VB 的考题,只要不是首次通过,凭盖有 PROMETRIC 或 VUE 考试中心钢印的考试成绩单,我们将退还您购买 70-528VB 考题大师的全部费用,绝对保证您的利益不受到任何的损失。
- 科目: 70-528VB
- 原价:
¥ 358.00 - 现价: ¥ 358.00
kaoccna 的优势
70-528VB 试题的质量和价值
mcsepass 模拟测试题具有最高的专业技术含量,只供具有相关专业知识的专家和学者学习和研究之用。
100% 保证您通过 70-528VB 的考试
如果你使用 mcsepass 模拟测试,我们将保证你的第一次参加考试即取得成功,否则,我们将全额退款!
试用后再购买
mcsepass 提供每种产品免费测试。在您决定购买之前,请检测联接,可能存在的问题及试题质量和适用性。
kaoccna认证考试题库网专业提供 Microsoft 70-528VB 最新题库下载,完全覆盖 mcsepass 考试原题。
部分考题展示
Exam : Microsoft 70-528VB
Title : MS.NET Framework 2.0-Web-based Client Development
1. You are creating a Web Form. You write the following code segment to create a SqlCommand object.
Dim conn As SqlConnection = New SqlConnection(connString)
conn.Open()
Dim cmd As SqlCommand = conn.CreateCommand()
cmd.CommandText = "select count(*) from Customers"
You need to display the number of customers in the Customers table.
Which two code segments can you use to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
A. Dim customerCount As Object = cmd.ExecuteScalar()
lblCompanyName.Text = customerCount.ToString()
B. Dim customerCount As Integer = cmd.ExecuteNonQuery()
lblCompanyName.Text = customerCount.ToString()
C. Dim dr As SqlDataReader = cmd.ExecuteReader()
dr.Read()
lblCompanyName.Text = dr(0).ToString()
D. Dim dr As SqlDataReader = cmd.ExecuteReader()
dr.Read()
lblCompanyName.Text = dr.ToString()
Answer: AC
2. You write a Web application. This application must support multiple languages. You store the localized strings in the application as resources. You want these resources to be accessed according to a user's language preference. You create the following resource files in the App_GlobalResources folder of your application.
myStrings.resx
myStrings.en-CA.resx
myString.en-US.resx
myStrings.fr-CA.resx
myStrings.es-MX.resx
Each resource file stores a localized version of the following strings: Name, E-mail, Address, and Phone. You create a Web Form that contains one label for each of these strings.
You need to ensure that the correct localized version of each string is displayed in each label, according to a user's language preference.
What should you do?
A. Add the following configuration section to the Web.config file.
<globalization culture="Auto" />
B. Set the directive for each page in your site as follows:
<%@ Page UICulture="Auto" %>
C. Add the following code segment to the page's load event.
lblName.Text = "{myStrings}Name"
lblAddress.Text = "{myStrings}Address"
lblEmail.Text = "{myStrings}Email"
lblPhone.Text = "{myStrings}Phone"
D. Add the following code segment to the page's load event.
lblName.Text = Resources.myStrings.Name
lblAddress.Text = Resources.myStrings.Address
lblEmail.Text = Resources.myStrings.Email
lblPhone.Text = Resources.myStrings.Phone
Answer: D
3. You are creating a DataTable. You use the following code segment to create the DataTable. (Line numbers are included for reference only.)
01 Dim dt As New DataTable("Products")
02 dt.Columns.Add(New DataColumn("Price", _
GetType(Decimal)))
03 dt.Columns.Add(New DataColumn("Quantity", _
GetType(Int32)))
04 Dim dc As DataColumn = New DataColumn("Total", _
GetType(Decimal))
05 dt.Columns.Add(dc)
You need to ensure that the Total column is set to the value of the Price column multiplied by the Quantity column when new rows are added or changed.
What should you do?
A. Add the following code segment after line 05.
dc.ExtendedProperties("Total") = "Price * Quantity"
B. Add the following code segment after line 05.
dc.Expression = "Price * Quantity"
C. Write an event handler for the DataTable's TableNewRow event that updates the row's Total.
D. Write an event handler for the DataTable's ColumnChanged event that updates the row's Total.
Answer: B
4. You are creating a Web Form to report on orders in a database. You create a DataSet that contains Order and OrderDetails tables. You add a relationship between the tables by using the following code segment.
Dim dtOrders As DataTable = dsOrders.Tables("Orders")
Dim dtOrderDetails As DataTable = _
dsOrders.Tables("OrderDetails")
Dim colParent As DataColumn = dtOrders.Columns("OrderID")
Dim colChild As DataColumn = _
dtOrderDetails.Columns("OrderID")
dsOrders.Relations.Add("Rel1", colParent, colChild, False)
You need to calculate the total quantity of items for each order by adding the values in the Quantity column in the OrderDetails rows for each order.
Which code segment should you use?
A. Dim parentRow As DataRow
For Each parentRow In dtOrders.Rows
currQty = 0
Dim childRow As DataRow
For Each childRow In dtOrderDetails.Rows
currQty += Convert.ToInt32(childRow("Quantity"))
Next childRow
ShowQty(currQty)
Next parentRow
B. Dim parentRow As DataRow
For Each parentRow In dtOrders.Rows
currQty = 0
Dim childRow As DataRow
For Each childRow In parentRow.GetChildRows("Rel1")
currQty += Convert.ToInt32(childRow("Quantity"))
Next childRow
ShowQty(currQty)
Next parentRow
C. Dim childRow As DataRow
For Each childRow In dtOrders.Rows
currQty = 0
Dim parentRow As DataRow
For Each parentRow In childRow.GetParentRows("Rel1")
currQty += Convert.ToInt32(childRow("Quantity"))
Next parentRow
ShowQty(currQty)
Next childRow
D. Dim parentRow As DataRow
For Each parentRow In dtOrders.Rows
currQty = 0
Dim childRows As DataRow() = _
parentRow.GetChildRows("Rel1")
currQty += childRows.Length
ShowQty(currQty)
Next parentRow
Answer: B
5. You create a Web Form. The Web Form uses the FormView control to enable a user to edit a record in the database.
When the user clicks the Update button on the FormView control, the application must validate that the user has entered data in all of the fields.
You need to ensure that the Web Form does not update if the user has not entered data in all of the fields.
Which code segment should you use?
A. Protected Sub FormView1_ItemUpdating(ByVal sender As Object, _
?ByVal e As System.Web.UI.WebControls.FormViewUpdateEventArgs) _
?Handles FormView1.ItemUpdating
Dim entry As DictionaryEntry
For Each entry In e.Keys
If entry.Value.ToString() = System.String.Empty Then
e.Cancel = True
Return
End If
Next entry
End Sub
B. Protected Sub FormView1_ItemUpdated(ByVal sender As Object, _
?ByVal e As System.Web.UI.WebControls.FormViewUpdatedEventArgs) _
?Handles FormView1.ItemUpdated
Dim entry As DictionaryEntry
For Each entry In e.NewValues
If entry.Value.Equals("") Then
e.KeepInEditMode = True
Return
End If
Next entry
End Sub
C. Protected Sub FormView1_ItemUpdating(ByVal sender As Object, _
?ByVal e As System.Web.UI.WebControls.FormViewUpdateEventArgs) _
?Handles FormView1.ItemUpdating
Dim entry As DictionaryEntry
For Each entry In e.NewValues
If entry.Value.Equals("") Then
e.Cancel = True
Return
End If
Next entry
End Sub
D. Protected Sub FormView1_ItemUpdated(ByVal sender As Object, _
?ByVal e As System.Web.UI.WebControls.FormViewUpdatedEventArgs) _
?Handles FormView1.ItemUpdated
Dim entry As DictionaryEntry
For Each entry In e.Keys
If entry.Value.ToString() = System.String.Empty Then
e.KeepInEditMode = True
Return
End If
Next entry
End Sub
Answer: C
6. You are creating a Web Form that displays product data. You create a DataView named dvOrders and bind it to a GridView.
You need to display the rows from dvOrders where the CategoryID is 2, in descending order of unit price.
Which code segment should you use?
A. dvOrders.Find("CategoryID = 2, UnitPrice desc")
dvOrders.Table.AcceptChanges()
B. dvOrders.RowFilter = "CategoryID = 2"
dvOrders.Sort = "UnitPrice desc"
C. dvOrders.Table.Select("UnitPrice desc", "Category = 2")
D. dvOrders.Table.Select("CategoryID = 2", "UnitPrice desc")
Answer: B
7. You create a Web Form. The Web Form displays sales information as a chart. The chart must be rendered to the user's browser as a .jpeg file. The chart is retrieved by using the following code segment.
Dim bmpChart As Bitmap = Chart.GetCurrentSales()
You need to display the chart to the user.
Which code segment should you use?
A. Response.ContentType = "text/jpeg"
bmpChart.Save(Request.InputStream, System.Drawing.Imaging.ImageFormat.Jpeg)
bmpChart.Dispose()
B. Response.ContentType = "image/bitmap"
bmpChart.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Bmp)
bmpChart.Dispose()
C. Response.ContentType = "text/html"
bmpChart.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.MemoryBmp)
bmpChart.Dispose()
D. Response.ContentType = "image/jpeg"
bmpChart.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg)
bmpChart.Dispose()
Answer: D
8. You create a Web Form. The Web Form allows users to calculate values and display the results in a label named lblResults.
You need to capture all unhandled exceptions on the Web Form through the Error event. The Error event must capture each unhandled exception and display it on the Web Form.
Which code segment should you use?
A. Protected Sub Page_Error(ByVal sender As Object, _
?ByVal e As System.EventArgs) Handles Me.Error?
lblResults.Text = e.ToString()
e = Nothing
End Sub
B. Protected Sub Page_Error(ByVal sender As Object, _
?ByVal e As System.EventArgs) Handles Me.Error?
lblResults.Text = Server.GetLastError().ToString()
Server.ClearError()
End Sub
C. Protected Sub Page_Error(ByVal sender As Object, _
?ByVal e As System.EventArgs) Handles Me.Error?
Response.Write(e.ToString())
e = Nothing
End Sub
D. Protected Sub Page_Error(ByVal sender As Object, _
?ByVal e As System.EventArgs) Handles Me.Error
Response.Write(Server.GetLastError().ToString())
Server.ClearError()
End Sub
Answer: D
9. Your Web site uses custom Themes. Your Web site must support additional Themes based on the user's company name.
The company name is set when a user logs on to the Web site. The company's Theme name is stored in a variable named ThemeName.
You need to use this variable to dynamically set the Web site's Theme.
What should you do?
A. Add the following code segment to the markup source of each page on the Web site.
<%@ Page Theme="ThemeName" ... %>
B. Add the following code segment to the Load event of each page on the Web site.
Page.Theme = ThemeName
C. Add the following code segment to the PreInit event of each page on the Web site.
Page.Theme = ThemeName
D. Add the following code segment to the Web site's configuration file.
<pages theme="ThemeName" />
Answer: C
10. You are creating a Web Form. The Web Form allows users to rename or delete products in a list. You create a DataTable named dtProducts that is bound to a GridView. DataTable has the following four rows.
dtProducts.Rows(0)("ProductName") = "Soap"
dtProducts.Rows(1)("ProductName") = "Book"
dtProducts.Rows(2)("ProductName") = "Computer"
dtProducts.Rows(3)("ProductName") = "Spoon"
dtProducts.AcceptChanges()
The user utilizes a Web Form to delete the first product.
You need to set the RowStateFilter property of the DataTable's DefaultView so that only products that have not been deleted are shown.
To which value should you set the DataTables's DefaultView.RowStateFilter?
A. DataViewRowState.ModifiedOriginal
B. DataViewRowState.ModifiedCurrent
C. DataViewRowState.CurrentRows
D. DataViewRowState.Added
Answer: C