62,268
社区成员
发帖
与我相关
我的任务
分享 lblPriceReduce.Text="";
nPriceReduce.Value = "0";
sql = "select top 1 BULA_PriceMax from TF_BU_Largess where BULA_PriceMin <= " + Session["BUOR_PriceSum"] + " order by BULA_PriceMin desc ";
//Response.Write(sql);
string strPriceReduce = db.ReturnValue(sql);
if (strPriceReduce != "")
{
lblPriceReduce.Text = " 已为您减免 " + strPriceReduce + " 元运费";
nPriceReduce.Value = strPriceReduce;
}