UKmedia
Programmer
- Nov 2, 2002
- 90
Code:
Dim strSQL As String
strSQL = "UPDATE tblauth SET "
strSQL = strSQL & "email='" & txtEmail.Text & "',"
strSQL = strSQL & "telephone='" & txtTelephone.Text & "',"
strSQL = strSQL & "mobile='" & txtMobile.Text & "'"
strSQL = strSQL & " WHERE username='" & Session("UserName") & "'"
SQLExecute(strSQL)
I have placed in SQL and run it and no problems but within my webpage it reports that it has run with no errors and I dunno why!
UKmedia productions