How to copy protect aspx webpages

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I am creating a shopping cart webstie using VB.net. I want certain portions of my wesite to be copy protected like www.proware.com . The pages i want to protect are all dynamic

Thankyou

Dev
 
You haven;t given a specific Url for Proware, just the site in general... so
im not sure if your just trying to drive traffic there or not. It a cheap,
unprofessional, looking site and on that basis i can only assume that
whatever they have that you want, wouldn;t be very hard to replicate but by
the same token probably wouldn't be very effective either.

Im not about to waste my time surfing the site, but if your just talking
about preventing the save as context menu, then i regret to inform you it is
just a flimsy javascript trick that is easily circumvented, usually deployed
by those who have no idea about basic web development.

What is it that your selling that needs to be copy protected....? Or are you
just talking about copyright?

Richard
 
Hi Dev,

I did not see aspx pages on this site, only html pages made with Frontpage 4

Can you point me to the part that you mean?

Cor
 
Hi Cor,

Thankyou for your email.

I apologize for the typo error.

Please visit http://www.protware.com/

On the features page is the things i want to do
with .aspx pages which are dynamically generated on my
website. My website is still underconstruction and the
coding is going on in VB.NET

My main goals are :
==================
=>Disable right mouse button.
=>Disable text selection.
=>Prohibit offline use - your files will work fine when
someone is browsing your site, but they will not work if
they are saved and run from a local hard drive.
=>Prohibit printing of protected files.
=>Disable Clipboard , Control C, also disable copy
command in the edit menu,
=>Disable Print Screen

Thankyou,

Dev
(e-mail address removed)
 
Hi Richard,

Thankyou for your email.

I apologize for the typo error.

Please visit http://www.protware.com/

On the features page is the things i want to do
with .aspx pages which are dynamically generated on my
website. My website is still underconstruction and the
coding is going on in VB.NET

My main goals are :
==================
=>Disable right mouse button.
=>Disable text selection.
=>Prohibit offline use - ASPX files will work fine when
someone is browsing the website, but they will not work
if they are saved and run from a local hard drive.
=>Prohibit printing of protected files.
=>Disable Clipboard , Control C, also disable copy
command in the edit menu,
=>Disable Print Screen

We are taking pictures of around 50,000 products. Each
product photographed from 8 sides for 3d. The work is
very overwhelming and i donot want somebody to copy it.
Secondly when the shopping cart is generated somebody
might just copy paste the shopping cart and send order to
my competitor so i need to disable the shopping cart
pages from any kind of reproduction.

Thankyou,

Dev
(e-mail address removed)
 
Hi Dev,

I think it is difficult what you want. ASPX will not help you with most
things, because on the client side it is just HTML and JavaScript (or VB if
you want).

There are some things you can do for 95% of the users, however in my opinion
not everything for the more expirienced users.

Because it is clientside, you can use google to find properiete client side
scripts. (Which you can load using VB net by the way).

Have a look at the Page Class, which is important with this. It has no
intelicense so do not be afraid when you use it, probably a bug (only
anoying not real giving problems)

http://msdn.microsoft.com/library/d...cpref/html/frlrfSystemWebUIPageClassTopic.asp


I hope this helps?

Cor
 
Back
Top