void addOption(SelectElement sel, string key, string value) { OptionElement op = (OptionElement)Document.CreateElement("OPTION"); op.Text = value; op.Value = key; try { sel.Add(op, null); } catch { sel.Add(op); } }
void addOption(string value, string text, SelectElement parent) { OptionElement oe = (OptionElement)Document.CreateElement("OPTION"); oe.Value = value; oe.Text = text; try { parent.Add(oe, null); } catch { parent.Add(oe); } }