The IScriptingContext interface enables your component to retrieve interfaces to the built-in objects provided by ASP. You should not use this interface; use IObjectContext instead.
public interface asp.IScriptingContext extends com.ms.com.IUnknown { //Methods public abstract asp.IRequest getRequest(); public abstract asp.IResponse getResponse(); public abstract asp.IApplicationObject getApplication(); public abstract asp.IServer getServer(); public abstract asp.ISessionObject getSession(); }
You can use the methods exposed by the IScriptingContext interface to access any of the ASP built-in objects. IScriptingContext, however, has been replaced by ObjectContext as the prefered way to access the built-in objects. You should use ObjectContext instead of IScriptingContext.