asp.net - Trying to update a .mdb file, but changes are not appearing on intranet -
asp.net - Trying to update a .mdb file, but changes are not appearing on intranet -
like title suggests, attempting update microsoft access (.mdb) file. can edit fields , values fine, whenever seek upload intranet page i'm working on, changes not appear!
this chunk of code controls how things rendered on intranet site. built dropdown menu.
openstr = "driver={microsoft access driver (*.mdb)}; dbq=" & server.mappath("../db/pagers/pagers.mdb") set cn = server.createobject("adodb.connection") cn.open openstr sql = "select * info physician<>true , lastname not '%??%' , lastname not '%spare%' , status='active' order lastname,firstname" set record = server.createobject("adodb.recordset") record.open sql, cn, 3, 2 refreshing application pool doesn't seem anything, either.
any ideas?
asp.net sql ms-access
Comments
Post a Comment