Esempio n. 1
0
        public void LoadStaticFilter(string staticName, DropDownListBase combo)
        {
            var filter = this[staticName];

            if (filter != null)
            {
                combo.SetSelectedValue((int)filter);
            }
        }
Esempio n. 2
0
        public void LoadLocalFilter(string localName, DropDownListBase combo)
        {
            var filter = this[localName];

            if (filter != null)
            {
                combo.SetSelectedValue((int)filter);
            }
        }