Example #1
0
 protected void btnSoundOff_Click(object sender, EventArgs e)
 {
     if (Session["UserId"] != null && Session["UserId"].ToString() != string.Empty)
     {
         string userid = Session["UserId"].ToString();
         media_obj.UpdateAllStatus(userid, "0");
         FillDataInGrid();
     }
 }