How to stop pages from being grabbed using web grabber?
-
Hi, Can anyone suggest me how can I stop a web page from being grabbed using web grabber softwares? My website is asp.net 2.0 website. Please suggest me.
Vijay V. Yash Softech
-
Hi, Can anyone suggest me how can I stop a web page from being grabbed using web grabber softwares? My website is asp.net 2.0 website. Please suggest me.
Vijay V. Yash Softech
if you make all pages secured. I mean, allow users to see the pages only after providing the user credentials. If user is not authenticated, show "Access restricted" message.
Navaneeth How to use google | Ask smart questions
-
Hi, Can anyone suggest me how can I stop a web page from being grabbed using web grabber softwares? My website is asp.net 2.0 website. Please suggest me.
Vijay V. Yash Softech
There's really no way to stop people from saving a page, unless you stop them from seeing it. That's what Navaneeth is saying, but even then, if someone has a login, they can save your site. The only thing you can do, is to try to control how many pages someone can view in a given time, so they can't hammer your server to save a lot of pages in a short time.
Christian Graus Driven to the arms of OSX by Vista.
-
if you make all pages secured. I mean, allow users to see the pages only after providing the user credentials. If user is not authenticated, show "Access restricted" message.
Navaneeth How to use google | Ask smart questions
This is already done. Web grabber software grab the pages with images and other things. How to stop them?
Vijay V. Yash Softech
-
This is already done. Web grabber software grab the pages with images and other things. How to stop them?
Vijay V. Yash Softech
You plainly cannot. For me to view a page, you need to send me the HTML. Once I have it, I can save it.
Christian Graus Driven to the arms of OSX by Vista.
-
There's really no way to stop people from saving a page, unless you stop them from seeing it. That's what Navaneeth is saying, but even then, if someone has a login, they can save your site. The only thing you can do, is to try to control how many pages someone can view in a given time, so they can't hammer your server to save a lot of pages in a short time.
Christian Graus Driven to the arms of OSX by Vista.
Thanks for your replies. Can you please check this http://www.epicware.com/webgrabber.html[^] I m just wondering what this software can do with my site. Its for MAC so I m not able to check. You guys might have something to say. Regards
Vijay V. Yash Softech
-
This is already done. Web grabber software grab the pages with images and other things. How to stop them?
Vijay V. Yash Softech
VijayVishwakarma wrote:
Web grabber software grab the pages with images and other things.
You are talking about software like this[^], which downloads the pages for offline viewing, right? To prevent images and other file types to be served, you can create a
HttpHandler
, map the image and other file extensions to ASP.NET engine and tell ASP.NET to process these extensions by the handler you created. In this handler, you can check whether the requested user/program has successfully passed the authentication. If not, prevent the content being send.Navaneeth How to use google | Ask smart questions
-
There's really no way to stop people from saving a page, unless you stop them from seeing it. That's what Navaneeth is saying, but even then, if someone has a login, they can save your site. The only thing you can do, is to try to control how many pages someone can view in a given time, so they can't hammer your server to save a lot of pages in a short time.
Christian Graus Driven to the arms of OSX by Vista.
I think OP is saying about programs which downloads the pages for offline viewing. Please correct me if I got your post wrong.
Navaneeth How to use google | Ask smart questions
-
VijayVishwakarma wrote:
Web grabber software grab the pages with images and other things.
You are talking about software like this[^], which downloads the pages for offline viewing, right? To prevent images and other file types to be served, you can create a
HttpHandler
, map the image and other file extensions to ASP.NET engine and tell ASP.NET to process these extensions by the handler you created. In this handler, you can check whether the requested user/program has successfully passed the authentication. If not, prevent the content being send.Navaneeth How to use google | Ask smart questions
Thanks Navaneeth. Can you suggest me any good article for this. Regards
Vijay V. Yash Softech
-
Thanks Navaneeth. Can you suggest me any good article for this. Regards
Vijay V. Yash Softech
VijayVishwakarma wrote:
Can you suggest me any good article for this.
Sure. See this[^] MSDN article.
Navaneeth How to use google | Ask smart questions