protected new void Page_Load(object sender, EventArgs e)
        {
            //Security check for user manipulate query string paramter to access
            bool CanUserAccessAsset = AppSecurity.Can_View_Asset_Temp_Header(qsHeaderID);

            if (!CanUserAccessAsset)
            {
                string description = "CAIRS - Unauthorized Access - User trying to access Asset Temp Header ID: " + qsHeaderID;
                //process unauthorized access
                Unauthorized_Access(description);
            }

            if (!IsPostBack)
            {
                //Hide Navigation
                HideNavigation(true);

                PageIndex = "0";

                DDLLoadBaseType();
                DDLLoadAssetType();
                DDLLoadAssetCondition();
                TXTSerialNumLoad();
                TXTTagIDLoad();
                //Load from Query String
                LoadControlForQueryStringParam();

                //Load bin message
                SelectedIndexChangeDDLBin(sender, e);

                //Apply security to control
                ApplySecurityToControl();

                tagIDTemp.Focus();
            }

            ddlBin.SelectedIndexChanged_DDL_Bin                += SelectedIndexChangeDDLBin;
            DDL_BinEditAsset.SelectedIndexChanged_DDL_Bin      += SelectedIndexChangeDDLBinEdit;
            ddlBaseType.SelectedIndexChanged_DDL_AssetBaseType += onSelectedIndexChange_ddlAssetBaseType;
        }