SYSTEM SPECIFICATION
2.1 HARDWARE CONFIGURATION
SERVER
Processor
RECOMMENDEDE SPECIFICATION Intel Xenon Core 2 Duo
Memory
2 GB RAM
Hard Drive
180 SCSI HDD
Networking
10/100 Ethernet
Additional Hardware
16x DVD RW Burner
(For backup)
DVD-ROM
Operating System
Windows 2003 Server SP 4
Database
SQL Server 2000
Development Environment
Visual Studio 2005 Visual Source Safe 6.02a IIS 6.0 Apache Web Server MySql PHP Project Management Tool
DESKTOP
Processor
RECOMMENDED SPECIFICATION Intel Pentium Dual Core
Memory
512 MB RAM
Hard Drive
120 GB
Networking
10/100 Ethernet
Operating System
Win XP SP 2 or above
Database
SQL Server 2000 Client Only
Development
Visual Studio 2005
Environment
Macromedia Dreamweaver MX Adobe Photoshop CS
2.2 SOFTWARE CONFIGURATION
Design Tool
Visual Studio 2005
Source Control
Visual Source Safe 6.02a
Web server
IIS 6.0
Framework
.Net Framework 2.0
Coding
Asp.Net With C#
Database
Sql Server 2005/2000
Design Tools
Adobe Dream weaver CS3 Adobe Photoshop CS3
Third Party Tools
Farpoint Web Spread 2005 Crystal Report 11
2.3 SOFTWARE DISCRIPTION .NET FRAMEWORK 3.5 ARCHITECTURE
The .NET Framework version 3.5 builds upon the .NET Framework version 2.0 and the .NET Framework version 3.0,including service packs for the .NET Framework versions 2.0 and 3.0.Thi topic briefly describes the relationship of the .NET Framework versions 2.0,3.0 and 3.5.
ASP .NET
ASP .NET is a web applications framework developed and marked by Microsoft, that programmers can use to build dynamic web sites, web applications and web services.It was released in January 2002 with version 1.0 of the .NET Framework,and is the successor to Microsoft’s Active Server Pages(ASP) technology. ASP.NET is built on the Common Language Runtime,allowing programmers to write ASP.NET code using any supported .NET language.
C#
C# (pronounced “see sharp”) is a simple,modern, object oriented, and type-safe programming language. C# has its roots in the c family of languages and will be immediately familiar to c, c++, and java programmers. C# is standardized by ecma international as the ecma-334 standard and by iso/iec as the iso/iec 23270 standard. Microsoft’s C# compiler for the .net framework is a conforming implementation of both of these standards.
C# is an object-oriended language, but C# further includes support for component oriended programming .Contemporary software design increasingly relies on software components in the form of self-contained and self-describing packages of functionality. Key to such components is that they present a programming model with properties,methods,and events;they have attributes that provide declarative information about the component; and they incorporate their own documentation. C# provides language constructs to directly support these concepts, making C# a very natural language in which to create and use software components.
SQL SERVER 2005
The architecture of Microsoft SQL Server is broadly divided into three components: SQLOS which implements the basic services required by SQL Server, Including thread scheduling,memory management and I/O management;the Relational Engine, which implements the relational database components including support for Database , tables , queries and strored procedures as well as implementing the type system; and the Protocol Layer which exposes the SQL Server functionality.
ADO.NET
To work with data using ADO.NET,you use a variety of Windows-based ADO.NET applications in Visual Basic. To start, the data used by an application is stored in a dataset the contains one or more data tables.To load data into a data table,you use a data adapter. The main function of the data adapter is to manage the flow of data between a dataset and a database.To do that,it uses commands that define the SQL statements to be issued.The command for retrieving data,for example,typically defines a Select statement.Then,the command connects to the database using a connection and passes the Select statement to the database.After the Select statement is executed,the result set it produces is sent back to the data adapter,which stores the results in the data table.