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).

Sunday, September 30, 2012

What is ASP.NET?





ASP.NET is developed by Microsoft to create dynamic Web applications, Web sites, and Web services. It is a part of .NET Framework. You can create ASP.NET applications in most of the .NET compatible languages, such as Visual Basic, C#, and J#. The ASP.NET compiles the Web pages and provides much better performance than scripting languages, such as Vb Script. The Web Forms support to create powerful forms-based Web pages. You can use ASP.NET Web server controls to create interactive Web applications.

What is ASP?

Active Server Pages (ASP), also known as Classic ASP, is a Microsoft's server-side technology, which helps in creating dynamic and user-friendly Web pages. It uses different scripting languages to create dynamic Web pages, which can be run on any type of browser. The Web pages are built by using either Vb-script or JavaScript and these Web pages have access to the same services as Windows application, including ADO (ActiveX Data Objects) for database access, SMTP (Simple Mail Transfer Protocol) for e-mail, and the entire COM (Component Object Model) structure used in the Windows environment. ASP is implemented through a dynamic-link library (asp.dll) that is called by the IIS server when a Web page is requested from the server.