Client-side events with Web Form Controls/Validati

creasprup

New Member
In order to make ASP web applications run as fast as possible, round-trips to the server have to be minimized and therefore in traditional ASP, client-side (Javascript) events such as OnFocus/LostFocus, OnChange, OnKeyPress, OnBlur and OnClick were used as much as possible for formatting, calculating values, populating controls and more, to basically try to do as much on the client before going to the server. Whether is it a web application or a client-server application, as much should be done on the client before interacting with the server since servers are not necessary in the same building, city or even country anymore.<BR><BR>I am now building a Web application using the new .NET platform and using Web Form controls, which allows me to dynamically create server-side controls and then access the controls through code. This works really well after a trip is done to the server. I can populate the objects
 
Back
Top