Represents a store category for packages.
Inheritance: StoreModel
        private void SetOrganization(Organization organization)
        {
            GlobalAttributesCache globalCache = GlobalAttributesCache.Read();
            globalCache.SetValue( "StoreOrganizationKey", organization.Key, true );
            pnlAuthenicate.Visible = false;
            pnlSelectOrganization.Visible = false;
            pnlComplete.Visible = true;

            lCompleteMessage.Text = string.Format( "<div class='alert alert-success margin-t-md'><strong>Success!</strong> We were able to configure the store for use by {0}.</div>", organization.Name );
        }
 protected void btnSelectOrganization_Click( object sender, EventArgs e )
 {
     Organization organization = new Organization();
     organization.Key = rblOrganizations.SelectedValue;
     organization.Name = rblOrganizations.SelectedItem.Text;
     SetOrganization( organization );
 }