本文整理汇总了C#中BAL.ClsBAL.UpdatePromoCodeStatus方法的典型用法代码示例。如果您正苦于以下问题:C# ClsBAL.UpdatePromoCodeStatus方法的具体用法?C# ClsBAL.UpdatePromoCodeStatus怎么用?C# ClsBAL.UpdatePromoCodeStatus使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BAL.ClsBAL
的用法示例。
在下文中一共展示了ClsBAL.UpdatePromoCodeStatus方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: gvPromoCodes_RowCommand
protected void gvPromoCodes_RowCommand(object sender, GridViewCommandEventArgs e)
{
try
{
if (e.CommandName == "status")
{
LinkButton lbtn = (LinkButton)e.CommandSource;
Control ctrl = e.CommandSource as Control;
GridViewRow row = ctrl.Parent.NamingContainer as GridViewRow;
LinkButton lbtnstatus = (LinkButton)row.FindControl("lbtnstatus");
Label lblstatus = (Label)row.FindControl("lblStatus");
if (lbtnstatus.Text == "Activate")
{
objBAL = new ClsBAL();
objBAL.ID = Convert.ToInt32(e.CommandArgument);
objBAL.status = "1";
objBAL.modifiedBy = Convert.ToInt32(Session["UserID"].ToString());
if (objBAL.UpdatePromoCodeStatus())
{
tdmsg.Visible = true;
tdmsg.Style.Add("background-color:#6CC417;", "");
lblMainMsg.Text = "Updated Successfully....";
lblMainMsg.ForeColor = System.Drawing.Color.Green;
BindPromocodes();
}
else
{
tdmsg.Visible = true;
tdmsg.Style.Add("background-color:#E77471;", "");
lblMainMsg.Text = "OOPS Some Problem in updation.Try Later...";
lblMainMsg.ForeColor = System.Drawing.Color.Maroon;
}
}
else if (lbtnstatus.Text == "Deactivate")
{
objBAL = new ClsBAL();
objBAL.ID = Convert.ToInt32(e.CommandArgument);
objBAL.status = "0";
objBAL.modifiedBy = Convert.ToInt32(Session["UserID"].ToString());
if (objBAL.UpdatePromoCodeStatus())
{
tdmsg.Visible = true;
tdmsg.Style.Add("background-color:#6CC417;", "");
lblMainMsg.Text = "Updated Successfully....";
lblMainMsg.ForeColor = System.Drawing.Color.Green;
BindPromocodes();
}
else
{
tdmsg.Visible = true;
tdmsg.Style.Add("background-color:#E77471;", "");
lblMainMsg.Text = "OOPS Some Problem in updation.Try Later...";
lblMainMsg.ForeColor = System.Drawing.Color.Maroon;
}
}
}
}
catch (Exception ex)
{
throw ex;
}
}