Guest User

Untitled

a guest
Jun 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. protected void Page_Load(object sender, EventArgs e)
  2. {
  3.  
  4.  
  5. if (!IsPostBack)
  6. {
  7. if (ViewState["gameID"] == null)
  8. {
  9. //Populate Listbox
  10. //Set gameid in viewstate
  11. }
  12.  
  13. //Add javascript handlers to buttons
  14. btnSomeButton.Attributes.Add("onclick", "aJavaScriptFunction");
  15.  
  16. }
  17. }
  18. protected void btnSave_Click(object sender, EventArgs e)
  19. {
  20. ListItemCollection x = ListBoxRanks.Items;
  21. //Here items is has just those items that are added to the listbox on page load
  22.  
  23. }
Add Comment
Please, Sign In to add comment