473,387 Members | 1,495 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Disabling save as...

Hi

Is there anyway avoiding users to save my web pages?
this idea came to my mind when I tried to save a web page, but in the
middle of saving progress something like the following error occurred:
"unable to save the page...".

on the other hand, once, I saved a web page successfully, but when I
opened it the characters were completely unreadable. unfortunately I
can't remember the url now but if you know any way to restrict users,
please let me know. (by the way, I'm not looking for javascripts to
disable right click or so).

Thanks in advance for your help...

Hector

Jul 22 '06 #1
5 1929
hp*****@yahoo.com wrote:
Hi

Is there anyway avoiding users to save my web pages?
this idea came to my mind when I tried to save a web page, but in the
middle of saving progress something like the following error occurred:
"unable to save the page...".

on the other hand, once, I saved a web page successfully, but when I
opened it the characters were completely unreadable. unfortunately I
can't remember the url now but if you know any way to restrict users,
please let me know. (by the way, I'm not looking for javascripts to
disable right click or so).

Thanks in advance for your help...

Hector
It is not possible.
Even if it were possible in one browser, it won't be in the 100 other
possible browsers.

If you don't want users to save your pages, don't publish them.

--

Riki
Jul 22 '06 #2
hp*****@yahoo.com wrote:
>Hi

Is there anyway avoiding users to save my web pages?
this idea came to my mind when I tried to save a web page, but in the
middle of saving progress something like the following error occurred:
"unable to save the page...".

on the other hand, once, I saved a web page successfully, but when I
opened it the characters were completely unreadable. unfortunately I
can't remember the url now but if you know any way to restrict users,
please let me know. (by the way, I'm not looking for javascripts to
disable right click or so).

Thanks in advance for your help...

Hector

It is not possible.
Even if it were possible in one browser, it won't be in the 100 other
possible browsers.

If you don't want users to save your pages, don't publish them.
True.

The browser has to be able to download the clear-text version of the
page, so anything that can "talk http" (such as 'telnet' to port 80)
can access that clear-text version (and any other files it points to).

Hans Kesting
Jul 24 '06 #3
1. How about opening your page using window.open from javascript
This option lets you control lots of properties of web-browser, may
be you can control "Save As" option too, never tried it though

2. Also remember to disable the right click option on the page
http://javascript.internet.com/page-...ght-click.html

3. Even if you disable both of the above, you will be unable to stop
user from doing PRNT+Screen :)

Hope that helps

Thanks
PP
Hans Kesting wrote:
hp*****@yahoo.com wrote:
Hi

Is there anyway avoiding users to save my web pages?
this idea came to my mind when I tried to save a web page, but in the
middle of saving progress something like the following error occurred:
"unable to save the page...".

on the other hand, once, I saved a web page successfully, but when I
opened it the characters were completely unreadable. unfortunately I
can't remember the url now but if you know any way to restrict users,
please let me know. (by the way, I'm not looking for javascripts to
disable right click or so).

Thanks in advance for your help...

Hector
It is not possible.
Even if it were possible in one browser, it won't be in the 100 other
possible browsers.

If you don't want users to save your pages, don't publish them.

True.

The browser has to be able to download the clear-text version of the
page, so anything that can "talk http" (such as 'telnet' to port 80)
can access that clear-text version (and any other files it points to).

Hans Kesting
Jul 27 '06 #4
In article <11*********************@i3g2000cwc.googlegroups.c om>,
pr******@hotmail.com writes
>1. How about opening your page using window.open from javascript
This option lets you control lots of properties of web-browser, may
be you can control "Save As" option too, never tried it though
And the user simply clicks Ctrl-N and the page opens in a new window,
complete with menus, toolbar, etc.
>2. Also remember to disable the right click option on the page
http://javascript.internet.com/page-...ght-click.html
Not only is this a useless attempt to stop users from doing what they
want, it has serious accessibility issues and should never be used. You
will annoy your users and not stop them from saving the page.
>3. Even if you disable both of the above, you will be unable to stop
user from doing PRNT+Screen :)
Even if you do the first two options, you still won't be able to stop
them saving the page. Both options are a waste of time, possibly worse.

Just accept the fact that you can't stop it. What do you have that is so
valuable that you don't want people saving it? If you're that bothered
about it, maybe you shouldn't be putting it on the web!!
>Hope that helps
Misinformation does not help, it merely deludes people into thinking
they have a solution for the problem that they have created. Far better
to accept the facts and realise that you have to think around the
problem another way.
>Thanks
PP
Hans Kesting wrote:
hp*****@yahoo.com wrote:
Hi

Is there anyway avoiding users to save my web pages?
this idea came to my mind when I tried to save a web page, but in the
middle of saving progress something like the following error occurred:
"unable to save the page...".

on the other hand, once, I saved a web page successfully, but when I
opened it the characters were completely unreadable. unfortunately I
can't remember the url now but if you know any way to restrict users,
please let me know. (by the way, I'm not looking for javascripts to
disable right click or so).

Thanks in advance for your help...

Hector

It is not possible.
Even if it were possible in one browser, it won't be in the 100 other
possible browsers.

If you don't want users to save your pages, don't publish them.

True.

The browser has to be able to download the clear-text version of the
page, so anything that can "talk http" (such as 'telnet' to port 80)
can access that clear-text version (and any other files it points to).

Hans Kesting
--
Alan Silver
(anything added below this line is nothing to do with me)
Jul 30 '06 #5
I completely agree with this. In fact, if a user can see it, she can print
screen it and save it from paint - a 2 second process. If you need that much
security, your better off using a pdf with appropriate permissions settings.
And it's really annoying to disable expected windows functionality.

--
________________________
Warm regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
Professional VSTO.NET - Wrox/Wiley
The O.W.C. Black Book with .NET
www.lulu.com/owc, Amazon
Blog: http://www.msmvps.com/blogs/alvin
-------------------------------------------------------
"Alan Silver" <al*********@nospam.thanx.invalidwrote in message
news:lq**************@nospamthankyou.spam...
In article <11*********************@i3g2000cwc.googlegroups.c om>,
pr******@hotmail.com writes
>>1. How about opening your page using window.open from javascript
This option lets you control lots of properties of web-browser, may
be you can control "Save As" option too, never tried it though

And the user simply clicks Ctrl-N and the page opens in a new window,
complete with menus, toolbar, etc.
>>2. Also remember to disable the right click option on the page
http://javascript.internet.com/page-...ght-click.html

Not only is this a useless attempt to stop users from doing what they
want, it has serious accessibility issues and should never be used. You
will annoy your users and not stop them from saving the page.
>>3. Even if you disable both of the above, you will be unable to stop
user from doing PRNT+Screen :)

Even if you do the first two options, you still won't be able to stop them
saving the page. Both options are a waste of time, possibly worse.

Just accept the fact that you can't stop it. What do you have that is so
valuable that you don't want people saving it? If you're that bothered
about it, maybe you shouldn't be putting it on the web!!
>>Hope that helps

Misinformation does not help, it merely deludes people into thinking they
have a solution for the problem that they have created. Far better to
accept the facts and realise that you have to think around the problem
another way.
>>Thanks
PP
Hans Kesting wrote:
>hp*****@yahoo.com wrote:
Hi

Is there anyway avoiding users to save my web pages?
this idea came to my mind when I tried to save a web page, but in the
middle of saving progress something like the following error
occurred:
"unable to save the page...".

on the other hand, once, I saved a web page successfully, but when I
opened it the characters were completely unreadable. unfortunately I
can't remember the url now but if you know any way to restrict users,
please let me know. (by the way, I'm not looking for javascripts to
disable right click or so).

Thanks in advance for your help...

Hector

It is not possible.
Even if it were possible in one browser, it won't be in the 100 other
possible browsers.

If you don't want users to save your pages, don't publish them.

True.

The browser has to be able to download the clear-text version of the
page, so anything that can "talk http" (such as 'telnet' to port 80)
can access that clear-text version (and any other files it points to).

Hans Kesting

--
Alan Silver
(anything added below this line is nothing to do with me)

Aug 1 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Dan =o\) | last post by:
Hi guys, in the scenario where a user fills in a form, and clicks on a button to Save, there's a period of waiting (the slower the connection between client and server, the longer the delay)...
6
by: sonic | last post by:
Hi, I am experimenting with different viewstate management ideas for large datagrids, and found a microsoft suggestion to turn it off, and only store relevant information by manually accessing...
3
by: PB | last post by:
What is the rationalle for disabling JavaScript. AFAIK, the primary reason is for "security purposes" - but what specific kind of threats does the protect against? AND - is the disabling of...
4
by: Jordan R. | last post by:
I just went to the following URL - wanted to copy and paste it (via Ctrl+C... Ctrl+V) - not a big deal - right? Well, the page throws up a message box stating that the Ctrl key is disabled. ...
12
by: Nalaka | last post by:
Hi, I suddenly started getting a lot of errors from html validation (some CSS) so I followed the following instructions to disable it. If you'd rather not have these types of HTML validation...
0
by: jleiva | last post by:
Hi Everyone, I created a word template, now I want to add a macro or vb programming that will do the following. After a user create a new document from a template (not Normal.dot), the user...
10
by: Sebarry | last post by:
Hi, Probably not a great place for this post, but FCKeditor is very well used so hopefully someone can help. Basically I have a form with two buttons - an edit button that creates an FCKeditor...
1
by: arggg | last post by:
I created a submit form that calls a javascript:AjAX Command that will call the data and submit it without have the page refresh. This works perfect in Firefox however in IE and Opera when the...
3
by: Jim Armstrong | last post by:
Hello all - This is driving me crazy. I have a table called tblClients - very simple, has the following fields: taxID (PK) ClientName SalesName The main form of my application allows a...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.