Guest User

Untitled

a guest
May 20th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. riskSeverityDropDown.SelectedValue = Convert.ToString(planRisk.Severity);
  2. riskSeverityDropDown.SelectedIndexChanged += new EventHandler(riskSeverityDropDown_SelectedIndexChanged);
  3. riskSeverityDropDown.AutoPostBack = true;
  4.  
  5. <asp:DropDownList ID="riskSeverityDropdown"
  6. AutoPostBack="True"
  7. SelectedIndexChanged="riskSeverityDropDown_SelectedIndexChanged"
  8. onChange="functionName()"
  9. runat="server" />
  10.  
  11. riskSeverityDropdown.Attributes["onchange"] = "functionName()";
Add Comment
Please, Sign In to add comment