ASP.net


ASP.NET
=========================

WEB FUNDAMENTAL:-
---------------------
INTERNET :- INTERNATIOANAL NETWORKING

WEB SITES :- COLLECTION OF WEB PAGES.IT PROVIDE US INFORMATION
    hcl.co.in /accenture.co.in

PORTALS :-COLLECTION OF MORE COMPLEX WEB PAGES..
 IT PROVIDE US SERVICES..
 EG:- rediff.com /yahoo.com

Web Pages :- Designed by the Use of HTML and DHTML..

HTML :- It is the Mother lang. of web
It is a kind of markup lang.
<>
It is Interpreted lang.

DHTML :- It is a concept ..To make the web page dynamic.

DHTML = HTML + SCRIPTING LANG..

Scripting Lang :-
1. Small lang 2. No own environment ..
3. Interpreted lang. 4. Run with HTML

eg:- Java script --Netscape
    Jscript --Microsoft
    Vb Script - "

web server :- where we can host the web sites.

www :- It is a kind of service

Http :- It is request and response protocol.

It is responsible for sending the request from client
to server and getting the response.

Static web page :- Just provide us information..
To make static web page we use : HTML

Dynamic web page :- database functioanlity
To make web page dynamic we use : HTML + SCRPTING LANG


ASP.NET
========================
 (Active server pages)

It is a kind of .net compatiable server side technology
used to host dynamic data over the web server.

Server Side Technology :-
=============================
When we are talking about internet programming :-
There is two types of programming :-

 1. Client side programming :- The process will get
  execute at the client browser.

eg:- validation

 2. Server side programming :-
  The process will get execute at the web server.
   eg:- database connectivity..



other server side:-
JSP/SERVLET /ASP/ASP.NET /CGI /PHP


Difference between ASP and ASP.NET
====================================

ASP ASP.NET
 ================  ============================
 1.not .net compatiable  1. .net compatiable
 2.No own controll  2. Own controll  
 (rich collection)
 3.Interpreted  3. compiled
 4.Slower  4. Faster
 5.Mixed coding  5. Sepration of coding
 html-asp-html-asp
 6.Small lang support     6. large lang support
   *java script / jscript    (c# / Vb.net)
    vb script

 7.ADO  7. ADO.NET

How to work with ASP.NET
=========================
Web server :- IIS

1. Visual studio 2008
---IIS inbuilt
**FOR LATER STAGE WE NEED IIS

2. Visual studio 2005 / Visual studio 2003 --
IIS(Internet information server)
Should be installed

How to Install IIS:-
=====================
CONTROLL PANEL --ADD OR REMOVE PROGRAM- ADD OR REMOVE WINDOWS
COMPONENT-- CHECK (INTERNET INFORMATION SERVICES)--
NEXT-OS CD -NEXT-NEXT -FINISH


HOW TO CHECK :-
===========
CONTROLL PANEL --ADMINISTRATIVE TOOL -INTERNET INFORMATION
SERVICES..




























Comments

Popular posts from this blog

C# Connectivity with MySql Server..