You are on page 1of 1

Internet Technologies

First Sessional

1. Give a neat pictorial representation of interaction between web browser and web server.

2. Which statement is not true with respect to ASP.NET?


A. Client side application easily has a way to read a file or interact with a database on the
server.
B. When the user clicks the Submit button on the page all the data in the input controls is
patched together and sent to the web server.
C. IL codes converted to native machine specific files are cached while the web application
is running, so they can be reused, ensuring optimum performance.
D. The portion of .NET class library is used to design web pages.

3. Difference between Client Side scripting vs Server side scripting.

Client Side scripting Server Side scripting


Adds interactivity on client browser Performs interaction from server side

Runs on client browser. No extra software Requires a web server with language
needed parser support
Used mainly for form validations, User for request/response manipulation
controlling behaviour of browser and handling
Cannot connect to database or read/write Interacts with db and can do file
files. operations.
Can view source code by clicking on view Cannot view source code since its
source on browser executed on server
Example Javascript Example ASP, PHP, etc

You might also like