Reputation: 63
I don't program in ASP at all, but I'm trying to figure out how a particular asp app connects to a database. the database username/password/server aren't stored in the source itself, it's not stored in the one #include, and it's not stored in global.asp. is there another way? or am I missing something?
Upvotes: 0
Views: 77
Reputation: 9341
It's probably using integrated authentication which uses the windows account the process is executing under. In development this would be your account.
Upvotes: 2