- 分享
- 0
- 人气
- 0
- 主题
- 7
- 帖子
- 178
- UID
- 42580
- 积分
- 237
- 阅读权限
- 14
- 注册时间
- 2006-8-29
- 最后登录
- 2014-3-25
- 在线时间
- 1308 小时
|
Dim strCommand As String
strCommand = "Insert into registerform(id,username,, password, phoneno) values ('" & Me.idtext.Text & "','" & Me.usernametext.Text & "', '" & Me.passwordtext.Text & "', '" & Me.phonenotext.Text & "')"
Try
Dim cm As New SqlClient.SqlCommand(strCommand)
con.Open()
cm.ExecuteNonQuery()
MsgBox("Succesfully saved…")
Catch ex As Exception
MessageBox.Show(ex.Message, "Error")
Finally
If con.State = ConnectionState.Open Then
con.Close()
End If
End Try
End Sub
请问下我这个Coding出了什么问题?
不好意识本人完全没有基本的基础在做着project
老师是完全没教我们家要我们用这些东西作了所以麻烦你们来纠正我 |
|