BAĞLANTILARIM

Takip Edin:

0

Tıklanan butonun görünümünü değiştirme

Pazartesi, Mayıs 02, 2016 / / , ,

Yine OnRowCommand olayında; 

protected void gridTablo_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            if (e.CommandName == "Sec")
            {
                string[] commandArgs = e.CommandArgument.ToString().Split(new char[] { ',' });
                int satirIndex = Convert.ToInt32(commandArgs[0]);
                string tanimId = commandArgs[1];
                string gecisTarihi = commandArgs[2];
                string grupId = commandArgs[3];
LinkButton linkSec = (LinkButton)gridTablo.Rows[satirIndex].FindControl("linkSec");
                string id = linkSec.ID;
                linkSec.Text = "<i class=\"fa fa-check\"></i>";
                linkSec.CssClass = "yesil14";
            }
        }

0 yorum

SON YORUMLAR