81. Which of the following are not a member of Server Object_________________? A. Open B. Execute C. Transfer D. HTMLDecode ✅ The correct answer is option A.
82. The first event triggers in an aspx page is__________________? A. Page_Load() B. Page_Init() C. Page_click() D. Page_doubleclick() ✅ The correct answer is option B.
83. File extension used for ASP.NET files ? A. .ASP B. .Web C. .ASPX D. None of these ✅ The correct answer is option A.
84. If I’m developing an application that must accommodate multiple security levels though secure login and my ASP.NET web application is spanned across three web-servers (using round-robin load balancing______________? A. Maintain the login state security through a View State. B. Maintain the login state security through a Session. C. Maintain the login state security through a database. D. All of the above ✅ The correct answer is option C.
85. In ASP.NET the sessions can be dumped by using ? A. Session.Abandon B. Session.Dump C. Session.Exit D. None of these ✅ The correct answer is option A.
86. In ASP.NET if one wants to maintain session then which of the following is used ? A. Microsoft SQL Server B. Session State Service C. In-process storage D. All of the above ✅ The correct answer is option D.
87. How do you get information from a form that is submitted using the “post” method ? A. Request.QueryString B. Response.writeln C. Response.write D. Request.Form ✅ The correct answer is option D.
88. What tags one need to add within the asp:datagrid tags to bind columns manually ? A. Set AutoGenerateColumns Property to true on the datagrid tag B. Set AutoGenerateColumns Property to false on the datagrid tag C. Set AutomaunalColumns Property to true on the datagrid tag D. It is not possible to do the operation ✅ The correct answer is option B.
89. How many configuration files can an ASP.NET projects have? A. One B. Two C. Three D. More than Three ✅ The correct answer is option A.
90. The control used in ASP.NET to display information from data set but with better formatting and editing behavior is_______________? A. DataList B. Button C. Panel D. None of the Above ✅ The correct answer is option A.