Sie sind auf Seite 1von 35

ABSTRACT

The project entitled “GYM WEBSITE” is a web based application. It


contains customer’s and gym model and fitness module. Customer’s can login into
the home page, can be able to allow to next page which has the table , it provides
the details customer’s details such as NAME, BMI, AGE, STARTING DATE,
ENDING DATE in the table day order, workouts, workout timing morning
,workout timing evening, diet, calories. It as the contact details and further
clarification.

1
CHAPTER-1

INTRODUCTION

ORGANIZATION PROFILE

The gym was started since 2000 the gym provide fitness and bodybuilding, health
conscious what ever the customer want that the time can be workout at a time 50 members squire
fit of the gym is 1000 squire fit . There total trainers are 5 members. The 2 members yoga and
the 3 members of bodybuilding and fitness. The gym was provide munity packages for
economic customers are silver package, gold package, diamond packages. In the gym contain
3Mrs tamilnadu competition in our gym there is a 2 Mrs.tamilnadu R.TAMILMARAN 70kg
category first price in the year of 2005, C.PRABHAHAR 80kg category first price in the year of
2008.best gym in panruti.all person’s in our gym are very good fitness person’s. all available in
the gym. Many person’s placed in government job by participate in various competition and win
the title through our gym.

2
CHAPTER-2

SYSTEM ANALYSIS

System analysis refers to the study of existing system in terms of system goals. The system
analysis of a project includes the basic analysis for the project development, the required data to
develop the project, the cost factor for the project development and other related factors.

2.1 EXISTING SYSTEM

The system study phase studies the problem, identifies alternate Solutions evaluate those
solutions and finally recommends the best solution. The system study gives the structure &
function of the system. The system Study can be performed only on an existing system. The
system study gives an idea of then user requirements. A detailed system study is an essential for
developing an efficient system.

2.2 PROPOSED SYSTEM

The proposed system is designed to eliminate the drawbacks of the existing system. It is
design to eliminate the drawbacks of the present system in order to provide a permanent solution
to the problem. The primary goal of the new system is to reduce the time and cost cutting.

2.3 FEASIBILITY STUDY

The purpose of feasibility study is not to solve the problem, but to determine whether the
problem is worth solving. The feasibility study concentrates on the following areas.

 Economic Feasibility
 Operational Feasibility
 Technical Feasibility

3
2.3.1 ECONOMICAL FEASIBILITY

The computerized system will help in automate the selection leading the profits and
details of the organization. With this software, the machine and manpower utilization are
expected to go up by 80-90% approximately. The costs incurred of not creating the system are
set to be great, because precious time can be wanted by manually.

2.3.2 OPERATIONAL FEASIBILITY

The project makes use of GUI components, like button, dropdown list, etc. The project is
design that the person who has basic knowledge on computer can work with this project easily.

2.3.3 TECHNICAL FEASIBILITY

The project entitles "GYM WEBSITE” is technically feasibility because of the below
mentioned feature. The project was developed in ASP.NET which Graphical User Interface. It
provides the high level of reliability, availability and compatibility. All these make ASP.NET an
appropriate language for this project. Thus the existing software ASP.NET is a powerful
language.

4
CHAPTER-3

SYSTEM SPECIFICATION

The system requires the following as minimum recommended configuration for processing

HARDWARE REQUIREMENTS

Processor : Intel Core Duo 2.30 GHz

RAM : 4 GB

Hard disk : 500 GB

SOFTWARE REQUIREMENTS

Platform : Microsoft Visual Studio-2010

Operation System : Windows 7

5
CHAPTER-4

SOFTWARE DESCRIPTIONS

4.1 INTRODUCTION TO ASP.NET

The .NET Framework is a new computing platform that simplifies application development
in the highly distributed environment of the Internet. The .NET Framework is designed to fulfill the
following objectives:

 To provide a consistent object-oriented programming environment whether object


code is stored and executed locally, executed locally but Internet-distributed, or
executed remotely.
 To provide a code-execution environment that minimizes software deployment and
versioning conflicts.
 To provide a code-execution environment that guarantees safe execution of code,
including code created by an unknown or semi-trusted third party.
 To provide a code-execution environment that eliminates the performance problems
of scripted or interpreted environments.

The common language runtime is the foundation of the .NET Framework. You can think of
the runtime as an agent that manages code at execution time, providing core services such as
memory management, thread management, and removing, while also enforcing strict type
safety and other forms of code accuracy that ensure security and robustness. In fact, the
concept of code management is a fundamental principle of the runtime. Code that targets the
runtime is known as managed code, while code that does not target the runtime is known as
unmanaged code.

Common Language Runtime

6
The common language runtime manages memory, thread execution, code execution,
code safety verification, compilation, and other system services. These features are intrinsic
to the managed code that runs on the common language runtime.

The runtime enforces code access security. For example, users can trust that an
executable embedded in a Web page can play an animation on screen or sing a song, but
cannot access their personal data, file system, or network. The security features of the
runtime thus enable legitimate Internet-deployed software to be exceptionally featuring rich.

The runtime also enforces code robustness by implementing a strict type- and code-
verification infrastructure called the common type system (CTS). The CTS ensures that all
managed code is self-describing. The various Microsoft and third-party language compilers
generate managed code that conforms to the CTS. This means that managed code can
consume other managed types and instances, while strictly enforcing type fidelity and type
safety.

In addition, the managed environment of the runtime eliminates many common


software issues. For example, the runtime automatically handles object layout and manages
references to objects, releasing them when they are no longer being used. This automatic
memory management resolves the two most common application errors, memory leaks and
invalid memory references.

The runtime also accelerates developer productivity. For example, programmers can
write applications in their development language of choice, yet take full advantage of the
runtime, the class library, and components written in other languages by other developers.
Any compiler vendor who chooses to target the runtime can do so. Language compilers that
target the .NET Framework make the features of the .NET Framework available to existing
code written in that language, greatly easing the migration process for existing applications.

The runtime is designed to enhance performance. Although the common language


runtime provides many standard runtime services, managed code is never interpreted. A
feature called just-in-time (JIT) compiling enables all managed code to run in the native
machine language of the system on which it is executing. Meanwhile, the memory manager

7
removes the possibilities of fragmented memory and increases memory locality-of-reference
to further increase performance.

.NET Framework Class Library

The .NET Framework class library is a collection of reusable types that tightly
integrate with the common language runtime. The class library is object oriented, providing
types from which your own managed code can derive functionality. This not only makes the
.NET Framework types easy to use, but also reduces the time associated with learning new
features of the .NET Framework. In addition, third-party components can integrate
seamlessly with classes in the .NET Framework.

As you would expect from an object-oriented class library, the .NET Framework
types enable you to accomplish a range of common programming tasks, including tasks such
as string management, data collection, database connectivity, and file access. In addition to
these common tasks, the class library includes types that support a variety of specialized
development scenarios. For example, you can use the .NET Framework to develop the
following types of applications and services:

 Console applications.
 Scripted or hosted applications.
 Windows GUI applications (Windows Forms).
 ASP.NET applications.
 XML Web services.
 Windows services.

For example, the Windows Forms classes are a comprehensive set of reusable types that
vastly simplify Windows GUI development. If you write an ASP.NET Web Form
application, you can use the Web Forms classes.

8
Client Application Development

Client applications are the closest to a traditional style of application in Windows-


based programming. These are the types of applications that display windows or forms on the
desktop, enabling a user to perform a task. Client applications include applications such as
word processors and spreadsheets, as well as custom business applications such as data-entry
tools, reporting tools, and so on. Client applications usually employ windows, menus,
buttons, and other GUI elements, and they likely access local resources such as the file
system and peripherals such as printers.

In the past, developers created such applications using C/C++ in conjunction with the
Microsoft Foundation Classes (MFC) or with a rapid application development (RAD)
environment such as Microsoft® Visual Basic®. The .NET Framework incorporates aspects
of these existing products into a single, consistent development environment that drastically
simplifies the development of client applications. Unlike ActiveX controls, Windows Forms
controls have semi-trusted access to a user's computer. This means that binary or natively
executing code can access some of the resources on the user's system (such as GUI elements
and limited file access) without being able to access or compromise other resources. Because
of code access security, many applications that once needed to be installed on a user's system
can now be safely deployed through the Web. Your applications can implement the features
of a local application while being deployed like a Web page.

Server Application Development

Server-side applications in the managed world are implemented through runtime


hosts. Unmanaged applications host the common language runtime, which allows your
custom managed code to control the behavior of the server. This model provides you with all
the features of the common language runtime and class library while gaining the performance
and scalability of the host server.

9
The following illustration shows a basic network schema with managed code running
in different server environments. Servers such as IIS and SQL Server can perform standard
operations while your application logic executes through the managed code.

Server-side managed code

ASP.NET is the hosting environment that enables developers to use the .NET
Framework to target Web-based applications. However, ASP.NET is more than just a
runtime host; it is a complete architecture for developing Web sites and Internet-distributed
objects using managed code. Both Web Forms and XML Web services use IIS and ASP.NET
as the publishing mechanism for applications, and both have a collection of supporting
classes in the .NET Framework.

XML Web services, an important evolution in Web-based technology, are


distributed, server-side application components similar to common Web sites. However,
unlike Web-based applications, XML Web services components have no UI and are not
targeted for browsers such as Internet Explorer and Netscape Navigator.

Web Forms pages in any language that supports the .NET Framework. In addition,
your code no longer needs to share the same file with your HTTP text (although it can
continue to do so if you prefer). Web Forms pages execute in native machine

language because, like any other managed application, they take full advantage of the
runtime. In contrast, unmanaged ASP pages are always scripted and interpreted.

Finally, like Web Forms pages in the managed environment, your XML Web service
will run with the speed of native machine language using the scalable communication of IIS.

Active Server Pages.NET

ASP.NET is a programming framework built on the common language runtime that can be used on a
server to build powerful Web applications. ASP.NET offers several important advantages over
previous Web development models:

10
 World-Class Tool Support: The ASP.NET framework is complemented by a
rich toolbox and designer in the Visual Studio integrated development environment.
WYSIWYG editing, drag-and-drop server controls, and automatic deployment are
just a few of the features this powerful tool provides.

 Power and Flexibility. Because ASP.NET is based on the common language


runtime, the power and flexibility of that entire platform is available to Web
application developers. The .NET Framework class library, Messaging, and Data
Access solutions are all seamlessly accessible from the Web. ASP.NET is also
language-independent, so you can choose the language that best applies to your
application or partition your application across many languages. Further, common
language runtime interoperability guarantees that your existing investment in COM-
based development is preserved when migrating to ASP.NET.

 Simplicity.ASP.NET makes it easy to perform common tasks, from simple form


submission and client authentication to deployment and site configuration. For
example, the ASP.NET page framework allows you to build user interfaces that
cleanly separate application logic from presentation code and to handle events in a
simple, Visual Basic - like forms processing model. Manageability.ASP.NET
employs a text-based, hierarchical configuration system, which simplifies applying
settings to your server environment and Web applications.

 Scalability and Availability.ASP.NET has been designed with scalability in


mind, with features specifically tailored to improve performance in clustered and
multiprocessor environments. Further, processes are closely monitored and managed
by the ASP.NET runtime, so that if one misbehaves (leaks, deadlocks), a new process
can be created in its place, which helps keep your application constantly available to
handle requests.

 Customizability and Extensibility.ASP.NET delivers a well-factored


architecture that allows developers to "plug-in" their code at the appropriate level. In
fact, it is possible to extend or replace any subcomponent of the ASP.NET runtime

11
with your own custom-written component. Implementing custom authentication or
state services has never been easier.

What is ASP.NET Web Forms?

The ASP.NET Web Forms page framework is a scalable common language runtime
programming model that can be used on the server to dynamically generate Web pages.

 The ability to create and use reusable UI controls that can encapsulate common
functionality and thus reduce the amount of code that a page developer has to write.
 The ability for development tools to provide strong WYSIWYG design
support for pages (existing ASP code is opaque to tools). `ASP.NET Web Forms pages are
text files with an .aspx file name extension. They can be deployed throughout an IIS virtual
root directory tree. When a browser client requests .aspx resources, the ASP.NET runtime
parses and compiles the target file into a .NET Framework class.

Code-Behind Web Forms

ASP.NET supports two methods of authoring dynamic pages. The first is the method
shown in the preceding samples, where the page code is physically declared within the
originating .aspx file.

Introduction to ASP.NET Server Controls

In addition to (or instead of) using <% %> code blocks to program dynamic content,
ASP.NET page developers can use ASP.NET server controls to program Web pages. Server
controls are declared within an .aspx file using custom tags or intrinsic HTML tags that
contain a runat="server" attributes value. Intrinsic HTML tags are handled by one of the
controls in the System.Web.UI.HtmlControls namespace. Any tag that doesn't explicitly
map to one of the controls is assigned the type of
System.Web.UI.HtmlControls.HtmlGenericControl.

12
Server controls automatically maintain any client-entered values between round trips to the
server. This control state is not stored on the server (it is instead stored within an <input
type="hidden"> form field that is round-tripped between requests). Note also that no client-
side script is required.

In addition to supporting standard HTML input controls, ASP.NET enables developers to


utilize richer custom controls on their pages. For example, the following sample
demonstrates how the <asp:adrotator> control can be used to dynamically display rotating
ads on a page.

1. ASP.NET Web Forms provide an easy and powerful way to build dynamic Web UI.
2. ASP.NET Web Forms pages can target any browser client (there are no script library
or cookie requirements).
3. ASP.NET Web Forms pages provide syntax compatibility with existing ASP pages.
4. ASP.NET server controls provide an easy way to encapsulate common functionality.

ASP.NET validation controls provide an easy way to do declarative client or server data valid.

The components of the .NET Framework

The .NET Framework provides a common set of services that application programs written
in a .NET language such as Visual Basic .NET can use to run on various operating systems and
hardware platforms. The .NET Framework is divided into two main components: the .NET
Framework Class Library and the Common Language Runtime. The .NET Framework Class
Library consists of segments of pre-written code called classes that provide many of the
functions that you need for developing .NET applications.

13
If you’re new to programming, the diagram in this figure probably doesn’t mean too much to you
right now. For now, then, just try to remember the general structure of the .NET Framework and
the terms that I’ve presented. The .NET Framework is designed for cross-language compatibility.
Cross-language compatibility means, an application written in Visual Basic. .NET may reference
a DLL file written in C# (C-Sharp). A Visual Basic .NET class might be derived from a C# class
or vice versa.

Common Language Runtime:

The .NET Framework provides a Runtime environment called the Common Language
Runtime or (CLR) that handles the execution of the code and provides useful services for the
implementation of the application. The managed code targets CLR benefits by using useful
features such as cross-language integration, cross-language exception handling, versioning,
enhanced security, deployment support, and debugging.

14
Common Type System (CTS):

It describes how types are declared, used and managed. CTS facilitate cross-language
integration, type safety, and high performance code execution. The CLS is a specification that
defines the rules to support language integration. This is done in such a way, that programs
written in any language (.NET compliant) can interoperate with one another. This also can take
full advantage of inheritance, polymorphism, exceptions, and other features.

MSIL (Microsoft Intermediate Language)

The compiler translates your code into Microsoft intermediate language (MSIL). The
common language runtime includes a JIT compiler for converting this MSIL then to native code.
MSIL contains metadata that is the key to cross language interoperability. Since this metadata is
standardized across all .NET languages, a program written in one language can understand the
metadata and execute code, written in a different language. MSIL includes instructions for
loading, storing, initializing, and calling methods on objects, as well as instructions for JIT (Just
in Time)

15
CHAPTER-5

PROJECT DESCRIPTION

5.1 PROBLEM DEFINITION


The project entitled “GYM WEBSITE” is a web based application. It contains
customer’s and gym model and fitness module. Customers can login into the home page, can be
able to allow to next page which has the table , it provides the details customer’s details such as
NAME, BMI, AGE, STARTING DATE, ENDING DATE in the table day order, workouts,
workout timing morning ,workout timing evening, diet, calories. It as the contact details and
further clarification.

5.2MODULE DESCRIPTION

 Home
 training
 nutrition
 Gallery
 contact

HOME PAGE

The project in home page will shows the mission and information of the gym.

TRANING
In the gym training are body building and fitness and yoga.
* Wait loss training
* Wait gain training
* Fitness training
* All sports training

16
FEES MAINTENACE
In this module students can able to refer their fees detail status and admin can maintain
the fees detail record.

COMPLAINTS

In this module students can register their complaints to the admin and then admin can
send response to the complaint.

Contact

Address:

Muscleman gym

k.k road, (gh oppsite)

panruti-607 106

17
CHAPTER-6

SYSTEM TESTING

Unit Testing

The first level of testing is called as Unit testing. Here the different modules
are tested and the specifications produced during design for the modules. Unit Testing is
essential for verification of the goal and to test the internal logic of the modules. Unit
testing was conducted to the different modules of the project. Errors were noted down
and corrected down immediately and the program clarity as increased. The testing
was carried out during the programming stage itself. In this step each module is found to be
working satisfactory as regard to the expected output from the module.

Integration Testing
The second level of testing includes integration testing. It is a systematic testing of
constructing structure. At the same time tests are conducted to uncover errors associated with
the interface.

Validation Testing

The next level of testing is validation testing. Here the entire software is
tested. The reference document for this process is his requirement and the goal is to
see if the software meets its requirements.

The requirement document reflects and determines whether the software


functions the user expected. At the culmination of the integration testing, software
is completely assembled as a package, interfacing and corrected and a final series of
software test and validation test begins. The proposed system under construction has been
tested by Using validation testing and found to be working satisfactory.

18
Output testing

The output of the software should be acceptable to the system user. The output
requirements are defined during the system analysis. Testing of the software system id done
against the output requirements and the output testing was completed with success.

User acceptance system

An acceptance test has the objective of selling the user on the validity and reliability of
the system. It verifies that the systems procedures operate to system specification and
make the integrity of vital data is maintained.

Performance Testing

This project is a system-based project, and the modules are interdependent with the
other modules, so the testing cannot be done module by module. So the unit testing is
not possible in the case of this driver. So this system is checked only with their performance
to check their quality.

19
CHAPTER-7

SYSTEM IMPLEMENTATION

The project is implemented in the system with the following configuration


successfully

Processor : Intel(R) PENTIUM (R) CPU P6200 @ 2.13GHZ

RAM : 2 GB

Hard disk : 250 GB

20
CHAPTER-8

APPENDIX

8.1 SAMPLE CODE

HOME:

<!DOCTYPE html>

<html lang="">

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title></title> <link rel="stylesheet" href="css/index.css">

</head><body>

<script src=""></script>

<div class="header"></div> <div class="nav">

<img src="./i_files/q.jpg" height="110px" width="110px" alt="logo"


class="left" style="border-radius:100%" class="imgsty">

<nav>

21
<ul>

<li><a href=" index.html">Home</a></li>

<li><a href=" page1.html">Trainings</a></li>

<li><a href="page2.html">Nutrition</a></li>

<li><a href="page3.html">Gallery</a></li>

<li><a href="page4.html">Contacts</a></li>

<li><a href="../home.aspx" style="background-color:Black; color:Red; font-


size:22px;">Check Your Progress </a></li>

</ul>

</ul> </nav>

</div>

<div class="slide">

<img src="image/1.jpg" height="560px" width="100%" id="imgs"


onclick="change()">

</div>

<div class="four-image">

<br><br><br><br>

22
<div class="heading">

<h1>OUR PROGRAMES</h1>

</div>

<br><br>

<div class="con-image">

<div class="imgwrap">

<divclass="img1"style="backgroundimage:url('image/o1.jpg')"></div>

<div class="colimg"></div>

</div>

<div class="imgwrap">

<divclass="img1"style="backgroundimage:url('image/o2.jpg')"></div>

<div class="colimg1"></div>

</div>

<div class="imgwrap">

<divclass="img1"style="backgroundimage:url('image/o3.jpg')"></div>
<div class="colimg2"></div>

</div>

23
<div class="imgwrap">

<divclass="img1"style="backgroundimage:url('image/o4.jpg')"></div> <div
class="colimg3"></div>

</div></div></div>

<div class="wcu" style="background-image:url('image/m1.jpg')">

<div class="wcu-bi">

<div class="lay1"><h2>WHY CHOOSE US </h2></div>

<div class="lay2"><h6 style='color:white'> wellcome tot he new world


of the gym this is gonna be make you free </h6></div>

<div class="lay3"> <div class="sl1">

<p class="sl11">2349</p>

<hr class="hsty">

<h6 class="h6s">Comfimtable Gym Space</h6>

</div>

24
<div class="sl1">

<p class="sl11">0</p>

<hr class="hsty">

<h6 class="h6s">Profession-trainers</h6>

</div>

<div class="sl1">

<p class="sl11">14</p>

<hr class="hsty">

<h6 class="h6s">FirstWorkout-isFree</h6>

</div>

<div class="sl1">

<p class="sl11">100</p>

<hr class="hsty">

<h6 class="h6s">Happy-Clients</h6 </div>

</div>

25
<div class="img-zom-wrap">

< img src="image/z1.jpg">

<img src="image/z2.jpg">

<img src="image/z3.jpg">

<img src="image/z4.jpg">

<img src="image/z5.jpg">

</div></div></div>

<div class="cwrap"><div>

<h2 class="chsty">COCHES</h2>

<br>

<h4 style="text-align:center;">believe your self</h4>

</div>

<div class="cimg-wrap">

<div class="img-wrap">

<img src="image/97.jpg" height="240px" width="100%" >

<div class="detail">

<p>gym trainer</p></div>

26
<div class="img-wrap">

<img src="image/96.jpg" height="240px" width="100%">

<div class="detail">

<p>yoga</p></div> </div>

<div class="mod">

<h1style="text-align:center;font-
family:verdana;position:relative;top:30px;">What People Say</h1>

<div class="modqou">

<div class="mod1">

<h2>ARNOLD</h2> <p><p> I was always dreaming about very


powerful people dictators and things like that. I was just always impressed by
people who could be remembered for hundreds of years or even like Jesus be
for thousands of years remembered.</p>

<p>For me life is continuously being hungry. The meaning of life is not simply
to exist to survive but to move ahead to go up to achieve to conquer.</p>

27
<p> Strength does not come from winning. Your struggles develop your
strengths. When you go through hardships and decide not to surrender that is
strength.</p> </p>

</div> <div class="mod1">

<h2>Brucelleee</h2>

<p> I fear not the man who has practiced 10 000 kicks once, but I fear the
man who has practiced one kick 10 000 times.

I fear not the man who has practiced 10 000 kicks once, bruce lee quotes.</p>

<p> A goal is not always meant to be reached, it often serves simply as


something to aim at.A goal is not always meant to be reached, bruce lee
quotes</p>

<p> Knowing is not enough; We must apply. Willing is not enough; We must
do.Bruce lee quotes.</p>

<p> Mistakes are always forgivable, if one has the courage to admit
them.Bruce lee quotes</p>

<p> Defeat is a state of mind; No one is ever defeated until defeat has been
accepted as a reality.Bruce Lee Quotes</p>

</div>

<div class="mod1">

<h2>Mohamad ali</h2>

28
<p>Float like a butterfly, sting like a bee. His hands can't hit what his eyes
can't see. Now you see me, now you don't. George thinks he will, but I know
he won't.</p>

<p>Service to others is the rent you pay for your room here on earth.</p>

<p> Iam young; Iam handsome; Iam fast. I can not possibly be beat.</p>

<p>Don not count the days; make the days count.</p>

<p> If my mind can conceive it and my heart can believe it—then I can
achieve it. Jesse Jackson said this as early as 1983, according to the Associated
Press, and Ali used it in his 2004 book.</p></div>

</div> <footer>

<div class="fot">

</div>

</footer>

<script>

var imgs=document.getElementById('imgs');

function change(){

if(imgs.getAttribute("src")==='image/1.jpg'){

imgs.setAttribute("src","image/2.jpg");

}
29
else if(imgs.getAttribute("src")==='image/2.jpg'){

imgs.setAttribute("src","image/3.jpg");

else if(imgs.getAttribute("src")==='image/3.jpg'){

imgs.setAttribute("src","image/4.jpg");

else if(imgs.getAttribute("src")==='image/4.jpg'){

imgs.setAttribute("src","image/5.jpg");

else if(imgs.getAttribute("src")==='image/5.jpg'){

imgs.setAttribute("src","image/1.jpg");

setInterval(function(){change()},4000);

</script>

</body>

</html>

30
8.2 SCREEN SHOTS

Home

Training:

31
NUTRISION:

32
GALLERY:

Contact:

33
CHAPTER-9

CONCLUSION

“gym” has overcome all the pitfalls in the existing system by its following primary goals.
 This can be accessed anytime anywhere, since it is a windows application it
requires only an internet connection.
 Provide user friendly, flexible environment.

Thus the “gym ” achieved all the objectives successfully and hopes it will surely reduce the
manpower.

34
CHAPTER-10

REFERENCE & BIBLIOGRAPHY

10.1 REFERENCE

http://www.google.com

http://www.microsoft.com

10.2 BIBLIOGRAPHY

The following books were referred during the analysis and execution phase
of the project

a. MICROSOFT .NET WITH C# -Microsoft .net series

b. ASP .NET 2.0 PROFESSIONAL -Wrox Publishers

c. ASP .NET WITH C# 2005 –A press Publications

d. BEGINNING ASP .NET 2.0 E-COMMERCE IN C# 2005 -Novice


to Professional.

35

Das könnte Ihnen auch gefallen