1
Answer

Add To Cart Button, The counter doesn't increment

Hello..
 
 Please when I click on the Add To Cart Button, The counter doesn't increment and it doesn't throw any error. Please I'm stocked, I need help.
 
Code:- aspx.cs
protected void itemcommand(object source, DataListCommandEventArgs e)
{
if (e.CommandName !=null)
DataListItem row = DataList1.Items[e.Item.ItemIndex];
Label lblFirstName = (Label)row.FindControl("lbl_IDPASS"); 
 string s_uniqueid = lblFirstName.Text;
 Session.Add("title", s_uniqueid);
 
last time add to cart item show only detail.. does not increment..... 
Answers (1)
0
Ranjit Powar

Ranjit Powar

NA 8.1k 496.6k 7y
Use this code in selected index changed event of combobox
 
for(int i=0; i<dataGridView1.Rows.Count;i++)
{
   dataGridView1.Rows[i].Cells[6].Value=comboBox1.SelectedValue;
}
 
 
Accepted
0
Mayank Jani

Mayank Jani

NA 154 3.8k 7y
Hii Ranjit,
thank you for your reply. there is just one little change I have to do that is instead of 'combobox1.SelectedValue' I added 'SelectedItem'. it is because when I used SelectedValue, and changed the value from combobox, all the values went blank...
 
'combobox1.text' also works.
 
anyway, my problem is solved.
thank you once again.
 
Mayank Jani