本文介绍了如何在gridview中显示以前的价格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  protected   void  btnadd_Click(对象发​​件人,EventArgs e)

{

string totalPid = txtcname.Text .Trim()。ToUpper()+& quot; - & quot; + txtcid.Text.Trim();
int ? InsertProductdetStatus;
objProductsPL.prodName = totalPid;
objProductsPL.productname = txtname.Text.Trim()。ToString();
objProductsPL.unitweight = Convert.ToInt32(txtunit.Text.ToString());
objProductsPL.company = txtcompany.Text.ToString();
objProductsPL.purpose =(txtpurpose.Text.Trim()。ToString()==& quot;& quot;? null :txtpurpose.Text 。修剪());
objProductsPL.producttype = ddlproducttype1.SelectedItem.Text.ToString();
objProductsPL.unitprice = Convert.ToDouble(txtunitprice.Text.ToString());
objProductsPL.productid3 = ddlctype.SelectedItem.Text.ToString();
objProductsPL.username = Session [& quot; username& quot;]。ToString();
InsertProductdetStatus = objProductsBAL.ProductidDetInsert(objProductsPL);
if (InsertProductdetStatus.Equals( 1 ))
{
ScriptManager.RegisterClientScriptBlock( this .Page, this .GetType(),& quot; UpdateDetails& quot; ,& quot;警告('详细信息已存在');& quot;, true );

}
else if (InsertProductdetStatus.Equals( 2 ))
{


ScriptManager.RegisterClientScriptBlock( this .Page, .GetType(),& quot; UpdateDetails& quot;,& quot; alert('已成功添加' );& quot;, true );
Grid();
clear();
bindRate();
}


}







在这里我添加了我的产品,没有任何问题..但我想显示以前的价格,当前价格列使用sql server..so我做什么..但它是基于产品名称..如果我输入相同的产品第二次,它会显示之前的价格列率.....请任何人帮我

解决方案



这篇关于如何在gridview中显示以前的价格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 06:30