Developing ASP.NET MVC Web Applications — Question 61
You are building an ASP.NET web application.
You must test the web application in multiple browsers at the same time.
You need to ensure that the application can use the Browser Link feature.
Which two actions should you perform? Each correct answer presents part of the solution.
Answer options
- A. In the web.config file, set the value of the debug attribute to False.
- B. In the web.config file, set the value of the debug attribute to True.
- C. Enable Browser link.
- D. Use an external editor for webpages.
- E. Enable source control server support.
Correct answer: B, C
Explanation
Setting the debug attribute to True in the web.config file allows for more detailed error messages and enables the Browser Link feature to function correctly. Additionally, enabling Browser Link is essential for simultaneous testing across multiple browsers. The other options either disable necessary features or are unrelated to the Browser Link functionality.