IScriptingContext Interface

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.

Syntax
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();
}
 
Remarks

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 preferred way to access the built-in objects. You should use ObjectContext instead of IScriptingContext.

See Also

IScriptingContext