foreach (GridViewRow r in dgvOrder.Rows) { TextBox myTextBox = (TextBox)r.FindControl("txtQuantity"); if (IsNaturalNumber(myTextBox.Text)) { qty = int.Parse(myTextBox.Text); price = double.Parse(r.Cells[4].Text); total = price * qty; orderPrice += total; r.Cells[7].Text = total.ToString("#,##0.00"); lblAlert.Visible = false; } else { lblAlert.Visible = true; return; } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง