Click to See Complete Forum and Search --> : how to avoid someone copies a web page?


UbiSum
March 23rd, 2006, 02:43 PM
hi:

I'd like to know how can I to avoid someone copies my web pages. I'm working in a project with ASP .NET and I need to the users can't copy the pages, send them, save them or anything else.

I hope someone can help me

Thanks

mmetzger
March 23rd, 2006, 02:51 PM
You can't do it. Once the data leaves your server you have no guarantee what happens to it. There are a few things that can make saving it more difficult, but the problem is you have no way of validating exactly what client is accessing the information.

UbiSum
March 24th, 2006, 02:14 PM
Thanks, anyway I'm proving some options.

I eliminated the menu, buttons in the IE and I set the next attributes in body tag: oncontextmenu="return false" onselectstart="return false" ondragstart="return false".

I just hope this will be enough