Online Access Free 070-515 Practice Test
| Exam Code: | 070-515 |
| Exam Name: | TS: Web Applications Development with Microsoft .NET Framework 4 |
| Certification Provider: | Microsoft |
| Free Question Number: | 186 |
| Posted: | May 30, 2026 |
You use the ASP.NET Web Application template to create an application in a new Visual Studio solution.
The project uses types that are defined in a class library project.
Source code for the class library is frequently modified.
You need to ensure that classes in the Web application project always reference the most recent version of
the class library types.
What should you do?
You are developing as ASP.NET Web application that will display a list of values.
The application must display the values in a tabular format in columns from top to bottom.
You need to choose a control that can be bound directly to the list to render this display.
Which control should you use?
You are developing an ASP.NET web page that includes a textbox control that has ID txtDate. You need to ensure that the user enters a valid date in the text box.
Which markup should you use?
You are developing an ASP.NET web page.
The page must display data from XML file named Inventory.xml. Inventory.xml contains data in the following format.
<?xml version="1.0" standalone="yes"?> <inventory> <vehicle Make="BMW" Model="M3" Year="2005" Price="30000" instock="Yes"> <Ratings>....</Ratings>
</Vechicle> .... </Inventory>
You need to display Vehicle elements that have the inStock attribute set to YES.
Wich two controls should you add to the page? (Each control presents part of the solution.Choose two.)