I have created an intranet site for my organization. user
has to go through NT Domain login process to enter the
site. I do not want to use IIS provided Windows Integrated
Authentication or Basic Authentication process to handle
this login process.
I am using ADSI object for authentication via a web form.
In the web site, the files format are asp, html,ms
dcument,pdf etc. In asp files I can check if the users
provided a valid login name and password at the login page.
How do I check when user request for one of the doc or pdf
file. Let me give an example.
If users type
http://intranet.mycompany.com/info/info.asp
info.asp page will check if users pass login id and
password. If not, info.asp page will redirect to
http://intranet.mycompany.com/login.asp which is a login
page.
If users type
http://intranet.mycompany.com/infodoc/infodoc.doc I have
no way to check if the users are logged on or not.
How can I solve this problem?
or is there any way I can get the request url from my site
index page before it goes to its destination?
or Can I make my web site always a single and only entry
point?
I really appreciate your feedback.
Thanks
Jyoti