RE: Explain the differences between Server-side and Client-side code?
server side code is responsible to execute and provide the executed code to the browser at the client side. the executed code may be either in XML or Plain HTML. the executed code only have the values or the results that are executed on the server. The clients browser executes the HTML code and displays the result. where as the client side code executes at client side and displays the result in its browser. it the client side core consist of certain functions that are to be executed on server then it places request to the server and the server responses as the result in form of HTML.
RE: Explain the differences between Server-side and Client-side code?
server side code is generated script for client side that display client browser in format HTML or XML becuse browser is understand only XML and HTML format. server side is ecxecute in server and display output in client server side code do the round trip in server while client execute in without any trip.
RE: Explain the differences between Server-side and Client-side code?
Server Side Code Server side is the code that resides at web server. For every client request code is executed at server side and result is send to the client in simple HTML format. Performance is lower than client side code due to server round trips. Client cannot see the business logic though it is stored on server.
Client Side Code Client side code is reside at client's browser itself. It is executed at client side only. User can easily see the code by View - > Source option. It is generally used in validation form like text field is empty or not email address validation etc. It is faster than server side code.
RE: Explain the differences between Server-side and Client-side code?
Serverside Code: Serverside Code is the Code which resides and executes on the server. After execution it give Client Side Code or Do some Action.
Clidentside Code: Clientside Code is the code which is generated by Server and executes on Client Machine. It could be in form of HTML JavaScript or XML or any Scripting Langaguate which is supported by relevant browser.