Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim arrData
Dim intCount
arrData = Split(Request("fieldname here"), ",")
For intCount = 0 To UBound(arrData) - 1
arrData(intCount) = Trim(arrData(intCount)
Response.Write(arrData(intCount) & "<br>")
Next
sql = "update products set boxnumber = '"&Request.Form("boxnumber")&"' where sku IN (" & Request("sku") & ")"