Vous êtes sur la page 1sur 25

SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENT FOR Six Week Industrial Training At Xpert Infotech (From 15 June 10 to 15 Aug

10)

Submitted To: Er.Monika Gupta Head, CSE Deptt.

Submitted By:Jagdeep Singh CSE 2 Year

REQUIRED SOFTWARE
INTRODUCTION TO ASP.NET ADO.NET

AJAX
WORKING OF PROJECT

VISUAL WEB DEVELOPER 2008 EXPRESS EDITION


.NET Framework 3.5 Microsoft SQL Server 2005 Express Edition SQL Server Management Studio Express

ASP stands for Active Server Pages . ASP.NET is a server-side technology for developing web applications based on the Microsoft .NET Framework. It runs on the web server. ASP.NET showed the way for the faster, easier, and more disciplined development of dynamic web sites . ASP.NET is a technology for developing web applications. A web application is just a fancy name for a dynamic web site. ASP.NET uses the Microsoft .NET Framework. The .NET Framework collects all the technologies needed for building Windows desktop applications, web applications, web services, and so on . ASP.NET lets you write the server-side code using your favorite programming language. The most popular choices are C# (pronounced C sharp) and Visual Basic (or VB) . ASP.NET pages are compiled, not interpreted. When an ASP.NET page is first requested, it is compiled and cached, or saved in memory, by the .NET Common Language Runtime (CLR). This cached copy can then be re-used for each subsequent request for the page. Performance is thereby improved because after the first request, the code can run from a much faster compiled version.

ADO.NET (ActiveX Data Objects .NET) is a modern Microsoft technology that permits us to access a relational database from an applications code. The SqlCommand class has three methods that we can use to execute a command; we simply choose the one that meets the specific needs of our query. The three methods are as follows:

ExecuteReader: ExecuteReader is used for queries or stored procedures that return one or of data. ExecuteReader returns an SqlDataReader object that can be used to read the results of the query one by one, in a forward-only, read-only manner.
ExecuteScalar: ExecuteScalar is used to execute SQL queries or stored procedures that return a single value, such as a query that counts the number of employees in a company. ExecuteNonQuery: ExecuteNonQuery is an oddly-named method thats used to execute stored procedures and SQL queries that insert, modify, or update data.

The acronym itself, coined by Jesse James Garret in 2005,stands for Asynchronous JavaScript and XML. Ajax represents the methodologies and technologies that allow developers to make web applications feel far more interactive and responsive. Notable examples of applications that utilize Ajax include Gmail, Google Maps, Yahoo! Mail and Facebook. ASP.NET AJAX, originally called ASP.NET Atlas, was originally a separate addonto ASP.NET 2.0, but has been included as a core part of ASP.NET 3.5. JavaScript is the scripting language that nearly all browsers support, which will let you fetch data behind the scenes, and XML is the popular language that lets you store data in an easy format.

This project is made with the help of asp.net ,ado.net and Ajax which we have discussed earlier.
This project is based on the E-Shopping system for world Wide. An E-Shopping is a multifunctional integrated computer based system that allows many activities to be performed in an electronics mode. We will discuss the working of project with the help of some snapshots.

Vous aimerez peut-être aussi