Answered by:
Look for the database information from .DLL and .PDB file in Bin folder

Question
-
User-1211710739 posted
Hello everybody,
I just started my new job and there are some webpages of the site that do not authorize me to log in. I want read the code of the .dll and .pdb file to find out what database (and what tables) to request authorization. Here is some code of the files:
The code of the .aspx.cs file:
int AccessResult = GRAD_BLL.PA_Applicants_ByUser(Username);
The Bin folder has 4 files:
Application.BLL.dll
Application.BLL.pdb
Application.DAL.dll
Application.DAL.pdb
Thank you for your help.
Friday, March 1, 2013 10:29 AM
Answers
-
User-166373564 posted
Hi hungtan
When a program is debugged, the debugger loads debugging information from the PDB file and uses it to locate symbols or relate current execution state of a program source code.
Considering of request authorization, I’m not sure whether you could do that, and there is a method of inspecting the content of a program Database (PDB) File here, please check whether it is helpful to you.
How to Inspect the Content of a Program Database (PDB) File
hope it helps you,
With regards
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Thursday, March 7, 2013 4:49 AM
All replies
-
User-1211710739 posted
I forgot to add that the Object Browser window shows this: Application.BLL.GRAD_BLL.PA_Applicants_ByUser(string). Thank you.
Friday, March 1, 2013 10:44 AM -
User-166373564 posted
Hi hungtan
When a program is debugged, the debugger loads debugging information from the PDB file and uses it to locate symbols or relate current execution state of a program source code.
Considering of request authorization, I’m not sure whether you could do that, and there is a method of inspecting the content of a program Database (PDB) File here, please check whether it is helpful to you.
How to Inspect the Content of a Program Database (PDB) File
hope it helps you,
With regards
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Thursday, March 7, 2013 4:49 AM -
User-1211710739 posted
Thank you Angie,
I have found the location of the files but I ran into another problem http://forums.asp.net/p/1889425/5331001.aspx/1?p=True&t=634987937896865751. Please read of you can help me. Thank you
Wednesday, March 13, 2013 5:52 PM