Differences between Server-side and Client-side code

Explain the differences between Server-side and Client-side code.

- Server-side code executes on the server.
- Client-side code executes in the client's browser.

Server.Transfer and Response.Redirect.

Server.Transfer
- Transfers page processing from one page directly to the next page.
- No round-trip back to the client's browser.
- Faster response with lesser overhead on the server.
- Server.Transfer does not update the clients url history list or current url.

Response.Redirect
- Used to redirect the user's browser to another page or site.
- Performs a trip back to the client where the client's browser is redirected to the new page.
- The user's browser history list is updated to reflect the new address.
ADO.NET Dataset
ADO.NET Dataset- A Dataset can represent an entire relational database in memory, complete with tables...
Global.asax in ASP.NET
ASP.NET - Global.asax in ASP.NET - The Global.asax is including the Global.asax.cs file.....
Application_Start and Session_Start subroutines - ASP.NET
ASP.NET - Application_Start and Session_Start subroutines - These subroutines set the variables for the Application and Session objects.....
Post your comment