Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim name As String = Request.QueryString("name")
Dim StrConn As String
StrConn = WebConfigurationManager.ConnectionStrings("Conn").ConnectionString
Dim Conn As New SqlConnection(StrConn)
Conn.Open()
Dim last_num As Integer = num.Text
Dim SqlCom As New SqlCommand("SELECT * FROM drug where name_drug ='" & name & "'", Conn)
Dim dr As SqlDataReader = SqlCom.ExecuteReader
While dr.Read
** Dim sum_quantity = dr.Item("quantity") + sum_quantity
Response.Write(sum_quantity)
Response.Write("<br>")
End While
Conn.Close()
End Sub
คือผมอยากนำค่า sum_quantity(เป็นค่าที่รวม ค่าquantity แต่ละคอลัมภ์ใน dataBase คับ) มาใช้นอก loop while แต่ไม่รู้ทำไง พอเอามาใช้นอก while มันก็ฟ้อง ประมาณว่าไม่รู้จักตัวแปรนี้คับ ช่วยแนะนำที คับบบ ขอบคุณคับบบ