Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. How to stop pages from being grabbed using web grabber?

How to stop pages from being grabbed using web grabber?

Scheduled Pinned Locked Moved ASP.NET
questioncsharpasp-nettutorial
10 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • V Offline
    V Offline
    VijayVishwakarma
    wrote on last edited by
    #1

    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

    N C 2 Replies Last reply
    0
    • V VijayVishwakarma

      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

      N Offline
      N Offline
      N a v a n e e t h
      wrote on last edited by
      #2

      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

      V 1 Reply Last reply
      0
      • V VijayVishwakarma

        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

        C Offline
        C Offline
        Christian Graus
        wrote on last edited by
        #3

        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.

        V N 2 Replies Last reply
        0
        • N N a v a n e e t h

          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

          V Offline
          V Offline
          VijayVishwakarma
          wrote on last edited by
          #4

          This is already done. Web grabber software grab the pages with images and other things. How to stop them?

          Vijay V. Yash Softech

          C N 2 Replies Last reply
          0
          • V VijayVishwakarma

            This is already done. Web grabber software grab the pages with images and other things. How to stop them?

            Vijay V. Yash Softech

            C Offline
            C Offline
            Christian Graus
            wrote on last edited by
            #5

            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.

            1 Reply Last reply
            0
            • C Christian Graus

              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.

              V Offline
              V Offline
              VijayVishwakarma
              wrote on last edited by
              #6

              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

              1 Reply Last reply
              0
              • V VijayVishwakarma

                This is already done. Web grabber software grab the pages with images and other things. How to stop them?

                Vijay V. Yash Softech

                N Offline
                N Offline
                N a v a n e e t h
                wrote on last edited by
                #7

                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

                V 1 Reply Last reply
                0
                • C Christian Graus

                  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.

                  N Offline
                  N Offline
                  N a v a n e e t h
                  wrote on last edited by
                  #8

                  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

                  1 Reply Last reply
                  0
                  • N N a v a n e e t h

                    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

                    V Offline
                    V Offline
                    VijayVishwakarma
                    wrote on last edited by
                    #9

                    Thanks Navaneeth. Can you suggest me any good article for this. Regards

                    Vijay V. Yash Softech

                    N 1 Reply Last reply
                    0
                    • V VijayVishwakarma

                      Thanks Navaneeth. Can you suggest me any good article for this. Regards

                      Vijay V. Yash Softech

                      N Offline
                      N Offline
                      N a v a n e e t h
                      wrote on last edited by
                      #10

                      VijayVishwakarma wrote:

                      Can you suggest me any good article for this.

                      Sure. See this[^] MSDN article.

                      Navaneeth How to use google | Ask smart questions

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups