用vb.net编写web应用程序时,我要向数据库中录入信息,为什么总是出现错误说:操作必须使用一个可更新的查询呢,在windows应用程序中用同样的代码就不会出现错误,可以顺利的录入到数据库中,为什么asp.net就不行呢,为什么呢,帮帮忙啊,以下是代码:
Dim constr As String = "provider=microsoft.jet.oledb.4.0;data source=e:\vb.net资料\办公系统.mdb"
Dim mycon As New OleDbConnection(constr)
mycon.Open()
Dim str As String = "INSERT INTO 物资消耗(部门名称,水电费,标石费,材料费,养路费,汽油费,其它,年份,月份,日期) " & _
" VALUES (@部门名称,@水电费,@标石费,@材料费,@养路费,@汽油费,@其它,@年份,@月份,@日期)"
Dim com As OleDbCommand
com = New OleDbCommand(str, mycon)
com.Parameters.Add("@部门名称", OleDbType.VarChar, 10).Value = DropDownList1.SelectedItem.Text
com.Parameters.Add("@水电费", OleDbType.VarChar, 10).Value = Me.TextBox1.Text
com.Parameters.Add("@标石费", OleDbType.VarChar, 10).Value = Me.TextBox2.Text
com.Parameters.Add("@材料费", OleDbType.VarChar, 10).Value = Me.TextBox3.Text
com.Parameters.Add("@养路费", OleDbType.VarChar, 10).Value = Me.TextBox4.Text
com.Parameters.Add("@汽油费", OleDbType.VarChar, 10).Value = Me.TextBox5.Text
com.Parameters.Add("@其它", OleDbType.VarChar, 10).Value = Me.TextBox6.Text
com.Parameters.Add("@年份", OleDbType.VarChar, 10).Value = DropDownList2.SelectedItem.Text
com.Parameters.Add("@月份", OleDbType.VarChar, 10).Value = DropDownList3.SelectedItem.Text
com.Parameters.Add("@日期", OleDbType.VarChar, 10).Value = DropDownList4.SelectedItem.Text
com.ExecuteNonQuery() 错误提示这句有错,它不就是更新的语句吗,为什么录不进去啊
com.Dispose()
有谁知道啊 ,帮忙啊