I am getting error on this int b = Convert.ToInt32(qty.Text); if i type more than 11 numbers in quantity textbox
if (Item_Name.Text == dr["Item_Name"].ToString() && Item_Code.Text == dr["Item_Code"].ToString()) { int a = Convert.ToInt32(dr["Selling_Price"].ToString()); if (qty.Text == "") { Selling_Price.Text = ""; } else { int b = Convert.ToInt32(qty.Text); //Error On This Line int c = a * b; Selling_Price.Text = c.ToString(); } }