Пример #1
0
 protected void GvCastRowCommand(object sender, GridViewCommandEventArgs e)
 {
     if (e.CommandName.Equals("Insert"))
     {
         var cstName = GvCast.FooterRow.FindControl("ftrCastName") as TextBox;
         if (cstName != null && !string.IsNullOrEmpty(cstName.Text.Trim()))
         {
             PageDataService.AddCastAdoNet(cstName.Text);
         }
         Response.Redirect(Request.RawUrl);
     }
 }