Which two actions should you perform?

You are developing an ASP.NET Web page.
You add the following markup to the page.
<asp:FileUpload id=”FileUpload1″ runat=”server” />
<asp:Button id=”btnUpload” Text=”Upload selected file”
OnClick=”btnUpload_Click” runat=”server” />
<asp:Label id=”lblFeedback” runat=”server” />

You add the following code segment to the code-behind. (Line numbers are included for reference
only.)
01 Protected Sub btnUpload_Click(ByVal sender As Object,
02 ByVal e As EventArgs) Handles btnUpload.Click
03 If () Then
04 Dim saveName As String =
05 Path.Combine(“c:\uploadedfiles\”,
06 FileUpload1.FileName)
07
08 lblFeedback.Text = “File successfully uploaded.”
09 Else
10 lblFeedback.Text = “File upload failed.”
11 End If
12
13 End Sub
You need to save the uploaded file and display a message to the user that indicates that the upload
either succeeded or failed. Which two actions should you perform? (Each correct answer presents
part of the solution. Choose two.)

You are developing an ASP.NET Web page.
You add the following markup to the page.
<asp:FileUpload id=”FileUpload1″ runat=”server” />
<asp:Button id=”btnUpload” Text=”Upload selected file”
OnClick=”btnUpload_Click” runat=”server” />
<asp:Label id=”lblFeedback” runat=”server” />

You add the following code segment to the code-behind. (Line numbers are included for reference
only.)
01 Protected Sub btnUpload_Click(ByVal sender As Object,
02 ByVal e As EventArgs) Handles btnUpload.Click
03 If () Then
04 Dim saveName As String =
05 Path.Combine(“c:\uploadedfiles\”,
06 FileUpload1.FileName)
07
08 lblFeedback.Text = “File successfully uploaded.”
09 Else
10 lblFeedback.Text = “File upload failed.”
11 End If
12
13 End Sub
You need to save the uploaded file and display a message to the user that indicates that the upload
either succeeded or failed. Which two actions should you perform? (Each correct answer presents
part of the solution. Choose two.)

A.
Replace line 03 with the following code segment.
If (FileUpload1.HasFile) Then

B.
Replace line 03 with the following code segment.
If (FileUpload1.FileContent.Length > 0) Then

C.
Insert the following code segment at line 07.
FileUpload1.SaveAs(saveName)

D.
Insert the following code segment at line 07.
FileUpload1.FileContent.CopyTo(
New FileStream(saveName, FileMode.Open))

Explanation:
CHAPTER 4 Using Server Controls
Lesson 2: Exploring Specialized Server Controls
The FileUpload Control (page 202-204)



Leave a Reply 0

Your email address will not be published. Required fields are marked *