Reputation: 161
How to allow only specific user's computer to access asp.net web application?
Actually our data is very sensitive we can not allow anyone to access our web application to just verify UserName or Password. we can not allow user to give their username and password to others. only registered client machine can use our web application.
Upvotes: 0
Views: 1596
Reputation: 11
Try to use an allowrule.
Here is a Microsoft TechNet article which describes exactly what you have to do. It also describes if you want to restrict requests to a specified domain. http://technet.microsoft.com/en-us/library/cc731598(v=ws.10).aspx
Upvotes: 1