Tuesday, 11 June 2013

ASP.NET HOME

ASP.NET is A server side technology for creating dynamic web pages using script language only and work with the .NET Framework. the .NET Framework contains huge collection of reusable classes. ASP.NET is used for developing dynamic Web pages. The heart of ASP.NET technology is Microsoft's .NET Framework, which provides the core technology. The .NET framework contains a vast set of programming classes designed to satisfy any programming needs and ASP.NET is just one of the components. Imagine that you have to support multiple programming languages - such as Visual Basic, and C++. Many of these languages overlap. For example, for each language, you have to include methods for accessing the file system, working with databases, using different methods and manipulating strings.

these programming languages have similar programming constructs. For example every language can represent loops and conditionals. Even though the syntax of a conditional, written in Visual Basic differs from that written in C++, the programming functions the same. most programming languages have similar types of variable data. In most languages, you have some means of representing strings and integers. For example, the maximum and minimum size of an integer may depend on the language, but the basic type of data is the same.


It requires a lot of work to maintain this functionally for multiple languages. Therefore .NET Framework consists of a vast set of classes designed to satisfy any conceivable programming need. For example the .NET Framework contains classes for handling database access, working with the file system, manipulating text, and generating graphics. In addition, it contains more specialized classes for performing tasks, such as working with regular expressions and handling network protocols. The .NET Framework also contains classes that represents all basic variable data types such as strings, integers, bytes, characters and arrays. The motive here is to explain that you can access any of .NET Framework classes even when you are building your ASP.NET pages.

1 comment:

  1. This proved to be very helpful to me.. Thanks for the post Narendra

    ReplyDelete

C# LINQ Joins With SQL

There are  Different Types of SQL Joins  which are used to query data from more than one database tables. In this article, you will learn a...