Tag: injecting

Injecting Client-Side Script from an ASP.NET Server Control

While, technically, all of a Microsoft ASP.NET server control’s functionality can be performed on the server-side, often the usability of a server control can be greatly enhanced by adding client-side script. For example, the ASP.NET validation Web controls perform all validation checks on the server-side. However, for uplevel browsers, the validation Web controls also emit client-side script so that validation can be performed on the client-side as well. This means that users of those browsers get a more responsive, dynamic experience.

Back To Top