Tag: script

Google Offers Glimpse of Google Apps Script

Google announced this week that it has launched a limited test of a new feature, which lets people add customization and automation to Google Apps, starting with spreadsheets in Google Docs. They call this Google Apps Script.

Google Apps Script lets users automate spreadsheet actions, like reading and changing values in cells and ranges, changing formats and formulas, and creating custom functions. It also allows users to send email or create calendar entries outside of spreadsheets.

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