Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hello Friends,

I have Hosted asp.net app in IIS 7.0, now the problem is i want to hide app hosted in iis, bcz others are trying to access it.

and i want to restrict the users not to copy from physical folder, though they copy from it it should not run in other systems.


Can you please help me how to Improve security for hosted application in client base.


Thanks
Varma
Posted

1 solution

This has nothing to do with security, it's called gibberish: http://en.wikipedia.org/wiki/Gibberish[^].

A Web application is always used by others, otherwise there is no point to develop it. If you simply want to give different level of access to different users, you need to introduce some user authentication: http://www.asp.net/web-forms/tutorials/security/roles/role-based-authorization-cs[^].

As to "copying from a physical folder": all ASP.NET code is on the server side, no one can access it through the HTTP. How well this code is protected is the matter of your Web hosting. This is the internal data, not for any Web users. As to the client side, everything is by definition fully accessed by anyone who loaded the page in client side. That's why the page works.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900