TROIKA.ASP - the MVC framework

SecretForm.js

Summary

Contains SecretForm 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
SecretForm This is RequestContext SecretForm class.

/**
* @fileoverview Contains <tt>SecretForm</tt> class.
*
* <p>
* This is part of Troika.ASP Framework - web development MVC framework for ASP 3.0.
* Please visit {@link http://www.troika-asp.com www.troika-asp.com} for more details.
* </p>
*
* @author Pavel Chuchev pav@troika-asp.com
* @version $Revision: 1.3 $
*/
SecretForm.prototype =  new RequestContext();
SecretForm.prototype.constructor = SecretForm;

/**
* Constructs a new SecretForm class.
*
* @class This is RequestContext SecretForm class.
* @constructor
* @param {String} action The command name as found in config.xml.
*/
function SecretForm(action) {

    if (arguments.length) {

        this.init(action);
    }
    /**
    * Stores secret message info.
    *
    * @type String
    */
    this.secretInfo = null;
}

/**
* Initializes <tt>SecretForm</tt>.
*
* @return <tt>SecretForm</tt> object instance itself.
* @type SecretForm
*/
SecretForm.prototype.init = function (action) {

    RequestContext.prototype.init.call(this, action);

    return this;
};

TROIKA.ASP - the MVC framework

www.troika-asp.com
Documentation generated on Sun Jun 15 17:59:32 2008