Which of the following is used to send email message from my ASP.NET page? September 13, 2025 by Admin A. System.Web.Mail.SmtpMail B. System.Web.Mail.MailMessage C. Both A and B D. None of these ✅ The correct answer is option C.
I have an ASP.NET application. I have a page loaded from server memory. At this instance which of the following methods gets fired ? September 13, 2025 by Admin A. Load() B. Unload( ) C. PreRender( ) D. None of the Above ✅ The correct answer is option A.
In ASP.NET if you want to allows page developers a way to specify static connections in a content page then the class used is_____________? September 13, 2025 by Admin A. System.Activator B. ProxyWebPartManager C. WebPartManager D. None of these ✅ The correct answer is option B.
____________ tests make sure that new code does not break existing code? September 13, 2025 by Admin A. Integration tests B. Regression tests C. Load test D. Unit tests ✅ The correct answer is option A.
How do you register a user control ? September 13, 2025 by Admin A. Add Source, Tag prefix B. Add Tag prefix, Tag name C. Add Src, Tagprefix, Tagname D. None of these ✅ The correct answer is option C.
Which of the following is FALSE ? September 13, 2025 by Admin A. ASP.NET is a major upgrade over ASP B. ASP+ and ASP.NET refer to the same thing C. ASP.NET applications run without a Web Server D. None of these ✅ The correct answer is option D.
Difference between Response.Write() and Response.Output.Write() ? September 13, 2025 by Admin A. Response.Output.Write() allows you to write formatted output B. Response.Output.Write() allows you to stream output C. Response.Output.Write() allows you to buffer output D. Response.Output.Write() allows you to flush output ✅ The correct answer is option A.
What is the Server.MachineName does_________________? September 13, 2025 by Admin A. Gets the Referred Web site name on the server B. Gets the Server’s Machine Name C. Gets the Client Machine Name D. None of the above ✅ The correct answer is option B.
Mode of storing ASP.NET session_____________? September 13, 2025 by Admin A. StateServer B. SQL Server C. InProc D. All of the above ✅ The correct answer is option D.
Which of the following ASP.NET object encapsulates the state of the client ? September 13, 2025 by Admin A. Application object B. Session object C. Server object D. Response object ✅ The correct answer is option B.