Ejemplo n.º 1
0
    protected void GVCourse_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        string pCid = e.CommandArgument.ToString();

        if (e.CommandName == "U")
        {
            LearnSite.BLL.Courses cbll = new LearnSite.BLL.Courses();
            cbll.UpdateCold(Int32.Parse(pCid));
            CoursesOld();
        }
    }