ASP.Net Interview Question and Answers

106. What is Side-by-Side Execution?
  The CLR allows any versions of the same-shared DLL (shared assembly) to execute at the same time, on the same system, and even in the same process. This concept is known as side-by-side execution.
 
Your Name Your Email-ID
Your Answer
107. How to view an assembly?
  We can use the tool "ildasm.exe" known as "Assembly Disassembler" to view the assembly.
 
Your Name Your Email-ID
Your Answer
108. Which are the namespaces that are imported automatically by Visual Studio in ASP.Net?
 
    There are 7 namespaces which are imported automatically.
  • System
  • System.Collections
  • System.IO
  • System.web
  • System.web.UI
  • System.web.UI.HTMLControls
  • System.web.UI.WebControls.
 
Your Name Your Email-ID
Your Answer
109. What are the layouts of ASP.NET Pages?
 
  • GridLayout
  • FlowLayout
  • GridLayout positions the form object on absolute x and y co-ordinates of the screen.
    FlowLayout positions the form objects relative to each other.
 
Your Name Your Email-ID
Your Answer
110. What is a a multilingual Website?
  A multilingual Website serves content in a number of languages. It contains multiple copies for its content and other resources, such as date and time, in different languages.
 
Your Name Your Email-ID
Your Answer