Click here to Skip to main content
15,883,751 members
Articles / Web Development / HTML

AJAX Enabled Layered Web Application

Rate me:
Please Sign up or sign in to vote.
1.81/5 (6 votes)
23 Apr 20075 min read 55.3K   308   37  
Building AJAX Enabled Layered Web Applications with Microsoft ASP.NET 2.0
NOTES:
1. Run CreateDB.sql in SQL SERVER 2000 Query Analyzer in order to create the database "ACCOUNTS".
2. Run the UpdateDB.sql in SQL SERVER 2000 Query Analyzer after executing CreateDB.sql in order to create the required User Tables and Stored Procedures.
3. Open the "Accounts.csproj" file found in the "Accounts\Accounts" Folder with VS 2005
	Or
   Setup the virtual directory for the project from IIS.
4. Add the following keys to the web.config file.
  <appSettings>
    <add key="DatabaseServer" value="(local)" />
    <add key="Database" value="ACCOUNTS" />
    <add key="DbUserId" value="sa" />   <!-- SQL SERVER USERNAME -->
    <add key="DbPassword" value="sa" /> <!-- SQL SERVER PASSWORD -->
    <add key="PreLoaderImage" value="Images/loading.gif" />
  </appSettings>

5. run the application (Ctrl+F5 if running from VS 2005)

********************************************************
*Please note, this project works on .net frame work 2.0*
********************************************************

This sample application is a supplemental download for the article:

"Building AJAX Enabled Layered Web Applications with Microsoft ASP.NET 2.0"

If you have any questions or comments feel free to email me.


Happy Programing,

Syed Quadri

quadri@elimits.net

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Saudi Arabia Saudi Arabia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions