Ejemplo n.º 1
0
 protected void rptParent_ItemCommand(object source, RepeaterCommandEventArgs e)
 {
     try
     {
         if (e.CommandName.ToUpper() == "SENDQUOTE")
         {
             BLL_TRV_QuoteRequest Qr = new BLL_TRV_QuoteRequest();
             Qr.SendQuotaion(Convert.ToInt32(e.CommandArgument), Convert.ToInt32(Session["USERID"].ToString()));
             Qr = null;
             GetQuotations();
         }
     }
     catch { }
 }