MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    You are a member of a team of developers creating several ASP.NET applications for XYZ. You want to create a reusable toolbar that will be used in each of the applications. The toolbar will be displayed at the top of each page viewed by the user._x005F_x000D_ The contents of the toolbar will vary depending on options each user selects when creating a profile._x005F_x000D_ You want to be able to add the toolbar to the ASP.NET toolbox for each of the developers on your team.What should you do? | 
                            
| A. | Create a new Web Control Library project. Create the toolbar within a Web custom control. | 
| B. | Add a new Web user control to your ASP.NET project. Create the toolbar within the Web user control. | 
| C. | Add a new Web Form to your ASP.NET project. Design the toolbar within the Web Form and save the Web Form with an .ascx extension. | 
| D. | Add a new component class to your ASP.NET project. Design the toolbar within the designer of the component class. | 
| Answer» B. Add a new Web user control to your ASP.NET project. Create the toolbar within the Web user control. | |