ASP.NET INTERVIEW QUESTION & ANSWERS
111. |
How can you use ASP.NET to transform XML documents? |
|
You can use the XML Web controls to apply an XSL style sheet to an XML file. |
112. |
What is the difference between Asp and Asp.net? |
|
ASP (Active Server Pages) and ASP.NET are both server side technologies for building web sites and web applications, ASP.NET is Managed compiled code - asp is interpreted. and ASP.net is fully Object oriented.
ASP.NET has been entirely re-architected to provide a highly productive programming experience based on the .NET Framework, and a robust infrastructure for building reliable and scalable web applications. |
113. |
Which property on a Combo Box do you set with a column name,prior to setting the DataSource, to display data in the combo box? |
|
DataTextField property |
114. |
How do I send email message from Asp.Net? |
|
Asp.Net provides two namespace are :
- SystemWeb.Mailmessage class
- System.Web.Mail.Smtpmail class
|
115. |
What is the main mechanism for code reusing in web forms? |
|
User controls are the main mechanism for code reuse. |