.aspx中怎样取出具有指定属性值的一行中的某个属性值

2024年12月02日 18:52
有1个网友回答
网友(1):

Dim conn As New ADODB.Connection
Dim xsxx As New ADODB.Recordset
xsxx.CursorLocation = ADODB.CursorLocationEnum.adUseClient
conn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("./") & "\app_data\kczb.mdb")
xsxx.Open("select password from user where name='张三'"), conn, ADODB.CursorTypeEnum.adOpenDynamic, ADODB.LockTypeEnum.adLockBatchOptimistic)
response.write(xsxx.fields("password")