Thursday, October 18, 2012


What is the difference between a default skin and a named skin?

The default skin is applied to all the Web server controls in a Web form, which are of similar type, and it does not provide a Skin ID attribute. The named skin provides a Skin ID attribute and users have to set the Skin ID property to apply it.

What is an ASP.NET Web Form?


  • ASP.NET Web forms are designed to use controls and features.
  • The Web form uses a server-side object model that allows you to create functional controls, which are executed on the server and are rendered as HTML on the client.
  • The attribute, runat="server", associated with a server control indicates that the Web form must be processed on the server.



 


What is IIS? Why is it used?

  • IIS is stands for Internet Information Services (IIS) and Its provide Internet-based services to ASP.NET Web applications. 
  • It makes your computer to work as a Web server and provides the functionality to develop and deploy Web applications on the server.
  • IIS handles the request and response cycle on the Web server. It also offers the services of SMTP and FrontPage server extensions. The SMTP is used to send emails and use FrontPage server extensions to get the dynamic features of IIS, such as form handler.


What is the basic difference between ASP and ASP.NET?

  • The basic difference between ASP and ASP.NET is that ASP is interpreted and ASP.NET is compiled
  • ASP uses VBScript; therefore, when an ASP page is executed, it is interpreted and ASP.NET uses .NET languages, such as C# and VB.NET, which are compiled to Microsoft Intermediate Language (MSIL).