Exemplo n.º 1
0
 //clearTokens
 protected void clearTokens(Object sender, EventArgs e)
 {
     _tokenFilter.clearTokens();
     _tokenFilter.clearCacheKeys();
     foreach (RepeaterItem item in social_network_repeater.Items)
     {
         CheckBox cb = (CheckBox)item.FindControl("social_check");
         if (cb != null)
         {
             cb.Checked = false;
         }
     }
     requestTokens();
 }