﻿/// <reference name="MicrosoftAjax.js"/>


Type.registerNamespace("DotControl.Web.UI");

DotControl.Web.UI.ClientControl1 = function(element) {
    DotControl.Web.UI.ClientControl1.initializeBase(this, [element]);
}

DotControl.Web.UI.ClientControl1.prototype = {
    initialize: function() {
        DotControl.Web.UI.ClientControl1.callBaseMethod(this, 'initialize');
        
        // Add custom initialization here
    },
    dispose: function() {        
        //Add custom dispose actions here
        DotControl.Web.UI.ClientControl1.callBaseMethod(this, 'dispose');
    }
}
DotControl.Web.UI.ClientControl1.registerClass('DotControl.Web.UI.ClientControl1', Sys.UI.Control);

if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
Type.registerNamespace('DotControl.Web.UI');DotControl.Web.UI.Resource={};
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();