ASP.NET Forms Building with webcontrols

6:52 PM Posted by Isha

ASP.NET can be used to build forms with web controls as explained below.

The increased use of the Internet in the business scenario has shifted focus from desktop applications to Web-based applications. Because of this shift in focus, a Web development technology is needed that can combine the capabilities of different languages and simplify application development.

Microsoft's response to this need is the release of ASP.NET, which provides a common Web development platform.

ASP.NET
is a powerful programming platform that is used to develop and run Web based
applications and services. ASP.NET provides improved features, such as convenient debugging tools, over the earlier Web development technologies. ASP.NET provides a rich set of controls to design Web pages. Visual Studio .NET provides visual WYSIWYG (What You See Is What You Get) HTML editors. Therefore, you can design Web pages by simply dragging and dropping the controls.

ASP.NET supports the C#, Visual Basic .NET, and JScript .NET languages, all of which you can use to build programming logic for your Web pages. You can choose which one of these languages to use based on your proficiency on a particular language. One of the most important features of ASP.NET is that it provides separate files for page presentation and programming logic, which simplifies Web application development.

Introducing ASP.NET Web Forms The ASP.NET Web Forms technology is used to create asp.net programmable Web pages that are dynamic, fast, and interactive. Web pages created using ASP.NET Web Forms are called ASP.NET Web Forms pages or simply Web Forms pages.

ASP.NET uses the .NET Framework and enables you to create Web pages that are browser independent. In addition to being browser independent, the following are some of the features that may lead you to select Web Forms over other technologies to create dynamic Web pages:

Web Forms can be designed and programmed using Rapid Application Development (RAD) tools.

Web Forms support a rich set of controls and are extensible, because they provide support for user-created and third-party controls.

Any of the .NET Framework language can be used to program the ASP.NET Web Forms pages.

ASP.NET uses the Common Language Runtime (CLR) of the .NET Framework and thus benefits from its features, such as type safety and inheritance.

Related Posts:

Creation of asp.net application

0 comments:

Post a Comment