RequestAdapter.js
Summary
Contains RequestAdapter class.
This is part of Troika.ASP Framework - web development MVC framework for ASP 3.0.
Please visit www.troika-asp.com for more details.
Version: $Revision: 1.3 $
Author: Pavel Chuchev pav@troika-asp.com
|
Class Summary
|
| RequestAdapter |
This class adapts the native ASP Request object to Troika.ASP Request object. |
RequestAdapter.prototype = new HashMap();
RequestAdapter.prototype.constructor = RequestAdapter;
function RequestAdapter() {
this.init();
}
RequestAdapter.prototype.init = function () {
HashMap.prototype.init.call(this);
this.populate(Request.QueryString);
this.populate(Request.Form);
return this;
};
RequestAdapter.prototype.getCookie = function (key) {
return "" + Request.Cookies(key);
};
www.troika-asp.com
Documentation generated on Sun Jun 15 17:59:32 2008