Searched the code for "password" and found this:
//Retrieve username and password from previous form
var oUser = Request.Form("uName");
var oPass = Request.Form("pWord");
//Open database connection
var tblAuth = Server.CreateObject("ADODB.Recordset");
var strSQL = "Select * FROM Authentication";
oConn.Open(oConnString);
tblAuth.Open(strSQL, oConn);
Just below this fragment, it tries to match uName and pWord
against the recordset, decides whether to grant or deny.
But still puzzling me is how the ADODB recordset can be created
without having a password to the Access database ??
-Ben
>PS, given the ability to reference the system.mdw,
>it would seem that the OLE DB connection is using Access security.
>
>this is from the url I referenced:
>
>The final Connection String should look like this:
>Provider=Microsoft.Jet.OLEDB.4.0;Password=joe;User ID=jim;Data
>Source=C:\My.mdb;Persist Security Info=True;Jet OLEDB:System
>database=C:\Program Files\Common Files\System\SYSTEM.MDW;Jet OLEDB:Database
>Password=14323
>
>
>-----Original Message-----
>From: bbraver <mailto:[EMAIL PROTECTED]>
>
>
>
>Outbound email scanned for viruses. (e232)
[Todays Threads]
[This Message]
[Subscription]
[Fast Unsubscribe]
[User Settings]
- RE: .ASP security question Harkins, Patrick
- Re: .ASP security question Ben Braver
- Re: .ASP security question Matthew Small
- Re: .ASP security question Ben Braver
- RE: .ASP security question Harkins, Patrick
- Re: .ASP security question Ben Braver
- Re: .ASP security question Matthew Small
- Re: .ASP security question Matthew Small
- Re: .ASP security question Ben Braver
- Re: .ASP security question Matthew Small
- RE: .ASP security question Harkins, Patrick
- RE: .ASP security question Harkins, Patrick
- Re: .ASP security question Ben Braver