Microsoft 70-528 Actual Free Exam Questions & Community Discussion

  • Exam Code/Number: 70-528
  • Exam Name/Title: TS: Microsoft .NET Framework 2.0 - Web-based Client Development
  • Certification Provider: Microsoft
  • Corresponding Certification: MCTS
  • Exam Questions: 149
  • Updated On: Jun 03, 2026
You develop a Web control. The Web control consists of labels and associated text boxes. You need to ensure that the Web control has both toolbox and visual designer support. What should you do?
Correct Answer: C Vote an answer
You create a Web site. You assign a theme to all pages of the Web site. You use Skin files to assign visual styles to the application controls.
On several pages, you need to prevent the skins from overriding the style properties of some of the controls.
What should you do?
Correct Answer: D Vote an answer
You are creating a Microsoft ASP.NET Web application. The application connects to a remote Microsoft
SQL Server database.
You need to ensure that the Web application can be deployed to a remote Web server.
You also need to ensure that the Web application does not contain the source code and markup in user
controls during deployment.
What should you do?
Correct Answer: A Vote an answer
You create a Microsoft ASP.NET Web application. The application is accessed both from desktop Web browsers and from mobile device Web browsers.
You develop a custom control. In mobile device browsers, the custom control must contain only a subset of the data displayed in the desktop browser.
You need to ensure that the application renders correctly for both desktop browsers and mobile device browsers. What should you do?
Correct Answer: A Vote an answer
You create an e-commerce Web application.
During testing, you find bugs on the shopping cart page. You believe that the bugs might be related to the
values in the session or application state.
You need to see the session and application state values at the bottom of the page.
What should you do?
Correct Answer: D Vote an answer
You are developing a Web application.
The home page of the application is named Default.aspx. The home page is regularly updated.
You need to ensure that you can precompile and deploy the application. You also need to ensure that
Default.aspx can be modified without recompiling the application.
What should you do?
Correct Answer: A Vote an answer
You have a Microsoft ASP.NET Web application.
You create the following HTTP handler to return images from the database. (Line numbers are included for reference only).
01 Class GenerateImage 02 Implements IHttpHandler 03 Public ReadOnly Property IsReusable() As Boolean 04 Get 05 Return True 06 End Get 07 End Property 09 Public Sub ProcessRequest(ByVal context As HttpContext) 10 Dim imageName As String = context.Request.QueryString("ImageName") 11 Dim image As New Bitmap(imageName) 13 End Sub 14 End
You need to ensure that GenerateImage returns images to the Web application.
Which code segment should you insert at line 12?
Correct Answer: C Vote an answer
0
0
0
10