Introduction To Web Applications
In general Internet is a collection of websites.website provides collection of webpages.webpage provides information which is to be displayed to user/tacking information from user.
Internet technology is based on 4 things mainly
1.Web browser
2.Client side scripting
3.Web server
4.Server side scripting
1.Web browser
web browser is a software with collection of services[HTML interpreter,scripting language interpreter]
2.Client side scripting
The logic executed by the browser is called client side scripting.this will reduce burden on server
ex: javascript , jquery etc.
3.Web server
web server is a software to manage webpages,provides security to web pages.web server will accept "http request" and provides http response so it is also called http server.
Web site
web site is an application managed by web server to maintain physical path of webpages.
Server side technology
web server alone cannot perform code execution at server system,it requires additional intelligence.
that is nothing but a server side technology
There are different approaches given by different companies to work with server side technology
ex: Asp,Asp.net, PHP ,cold fusion ,JSP etc.
Asp(active server pages)
Asp is provided by Microsoft before .net to develop dynamic webpages with server side programming.asp providing scripting languages(VB script etc) for server side programming.
Drawback: scripting languages re interpreter based ,this requires syntax checking towards each execution,this will effect performance
Microsoft as given ASP.NET to overcome problems of ASP[classic asp]
ASP.NET(active server pages for .net)
Asp.net is a server side technology providing set of specifications to build web based applications with server side programming.
Asp.net is providing .net languages to support for server side programming.
One of the main differences between ASP.NET and Classic ASP is the fact that ASP.NET is compiled, while Classic ASP is always interpreted.
.NET is language independent, which means you can use any .NET supported language to make .NET applications. The most common languages for writing ASP.NET applications are C# and VB.NET.
Difference between Asp&Asp.Net
Asp.net Basic Server Object
2.Request Object
3.Response Object
4.Server Object
5.Session Object
No comments:
Post a Comment