Client-Server Web Scripting

Remote Scripting is a cool new technology from Microsoft that allows you to treat ASP pages as if they were COM objects. From the client, you can 'call' the scripts embedded in an ASP page that's sitting on the server. This is important, because it means you can keep complicated, lengthy, and / or proprietary business logic on the server - it won't be downloaded to the browser, but client-side scripts in the browser can execute it as if it were. This also means less round trip to the server to reload entire pages.

First
Next