Wednesday, 30 December 2015

ASP.NET Applications and Configuration

ASP.NET Applications and Configuration Overview Like ASP, ASP.NET encapsulates its entities within a web application. A web application is an abstract term for all the resources available within the confines of an IIS virtual directory. For example, a web application may consist of one or more ASP.NET pages, assemblies, web services configuration files, graphics, and more. In this section we explore two fundamental components of a web application, namely global application files (Global.asax)...
Read More »

Tuesday, 29 December 2015

First ASP.NET Program

First ASP.NET Program. Now let us have our First ASP.NET program. Let’s look at both the markup and the C# portions of a simple web forms application that generates a movie line-up dynamically through software. Markup Portion Web form application part 1 -- SimpleWebForm.aspx <% @Page Language="C#" Inherits="MoviePage" Src="SimpleWebForm.cs" %> <html> <body background="Texture.bmp"> <TITLE>Supermegacineplexadrome!</TITLE> <H1 align="center"><FONT...
Read More »

Quick Start :To ASP.NET

Quick Start :To ASP.NET After this short excursion with some background information on the .NET Framework, we will now focus on ASP.NET. File name extensions Web applications written with ASP.NET will consist of many files with different file name extensions. The most common are listed here. Native ASP.NET files by default have the extension .aspx (which is, of course, an extension to .asp) or .ascx. Web Services normally have the extension .asmx. Your file names containing the business...
Read More »

Monday, 28 December 2015

ASP.NET Architecture

ASP.NET Architecture ASP.NET is based on the fundamental architecture of .NET Framework. Visual studio provide a uniform way to combine the various features of this Architecture. Architecture is explained form bottom to top in the following discussion. At the bottom of the Architecture is Common Language Runtime. NET Framework common language runtime resides on top of the operating...
Read More »

ASP.NET Overview

ASP.NET Overview Here are some point that gives the quick overview of ASP.NET. ASP.NET provides services to allow the creation, deployment, and execution of Web Applications and Web Services Like ASP, ASP.NET is a server-side technology Web Applications are built using Web Forms. ASP.NET comes with built-in Web Forms controls, which are responsible for generating the user interface. They mirror typical HTML widgets like text boxes or buttons. If these controls do not fit your...
Read More »

Thursday, 24 December 2015

Advantages of ASP.NET

Advantages of ASP.NET Separation of Code from HTMLTo make a clean sweep, with ASP.NET you have the ability to completely separate layout and business logic. This makes it much easier for teams of programmers and designers to collaborate efficiently. This makes it much easier for teams of programmers and designers to collaborate efficiently.  Support for compiled languagesdeveloper can use VB.NET and access features such as strong typing and object-oriented programming. Using compiled...
Read More »

Introducing ASP.NET

Introducing ASP.NET ASP.NET was developed in direct response to the problems that developers had with classic ASP. Since ASP is in such wide use, however, Microsoft ensured that ASP scripts execute without modification on a machine with the .NET Framework (the ASP engine, ASP.DLL, is not modified when installing the .NET Framework). Thus, IIS can house both ASP and ASP.NET scripts on the same machine...
Read More »

Problems with Traditional ASP

Problems with Traditional ASP There are many problems with ASP if you think of needs for Today's powerful Web applications. Interpreted and Loosely-Typed CodeASP scripting code is usually written in languages such as JScript or VBScript. The script-execution engine that Active Server Pages relies on interprets code line by line, every time the page is called. In addition, although variables are supported, they are all loosely typed as variants and bound to particular types only when...
Read More »

Thursday, 3 December 2015

Active Server Pages (ASP)

Active Server Pages (ASP) Microsoft Active Server Pages (ASP) is a server-side scripting technology. ASP is a technology that Microsoft created to ease the development of interactive Web applications. With ASP you can use client-side scripts as well as server-side scripts. Maybe you want to validate user input or access a database. ASP provides solutions for transaction processing and managing session state. Asp is one of the most successful language used in web development....
Read More »

Wednesday, 2 December 2015

Beginners Introduction to ASP.NET

Introduction I have seen many tutorials on ASP.NET but most of them starts with coding and writing your first ASP.NET Program. But here I has written this tutorial for explaining why there is a need for ASP.NET when classy ASP is working fine and what are the underlying technology behind ASP.NET, What programming model ASP.NET Provides to programmers. Now let us get started. ASP.NET is the new offering for Web developers from the Microsoft. It is not simply the next-generation of...
Read More »