由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - How to disable browser options?
相关主题
[合集] How to disable browser options?.net前途如何?
访问MITBBS.com的问题open source dotNet IDE - sharpdevelop
.Net IDE - 总结网址open source dotNet IDE - Software Studio
cross browser/platform .net!?关于MDA
SilverLight能做动画吗?问一个吵架笨笨,菩萨怕怕stupid C#问题
How do you like ASP.NET MVC?from C++ to C#
SilverLight 4 is coming混合语言编程
ASP.NET 4.0 WEB API design 的best practice .Text 简易安装
相关话题的讨论汇总
话题: browser话题: save话题: disable话题: swf话题: copy
进入DotNet版参与讨论
1 (共1页)
D*****n
发帖数: 363
1
I want to show users a pdf file page by page on an ASP.NET site,
but I don't want them to copy the content and save it. I can convert
the PDF file into images so they can't copy the text, but they still
are able to save the images by right-clicking them and then choosing
save. Is it possible to entirely shut this copy/save option down
within a browser?
r****y
发帖数: 26819
2
Technically it's easy to disable save, but it's almost impossible to prevent
user keeping a local copy.

【在 D*****n 的大作中提到】
: I want to show users a pdf file page by page on an ASP.NET site,
: but I don't want them to copy the content and save it. I can convert
: the PDF file into images so they can't copy the text, but they still
: are able to save the images by right-clicking them and then choosing
: save. Is it possible to entirely shut this copy/save option down
: within a browser?

y********o
发帖数: 2565
3
Right, quite many image galleries use javascript to disable the image save
option. But, as long as the object is displayed on the client side, you
have no control on what will happen.
Say, you worked hard and disabled image-saving options or whatever, but how
can you disable printscreen from the keyboard or even a digital camera?
The principle would be:
1. Display something and do not worry about what your user will do about it,
because even if you worry, it's not gonna help.
2. Do not display

【在 r****y 的大作中提到】
: Technically it's easy to disable save, but it's almost impossible to prevent
: user keeping a local copy.

D*****n
发帖数: 363
4
Thank you and Rodney for the reply. I can't think of a way to
prevent print-screen or camera-grab either. I'm just trying to
make it as difficult as it can be to copy & save inside a browser.
I'll look at the javascript idea first. Someone suggests creating
home-grown format files and installing a plug-in on the browser
side to recognize them. That sounds too much a hustle.

how
it,

【在 y********o 的大作中提到】
: Right, quite many image galleries use javascript to disable the image save
: option. But, as long as the object is displayed on the client side, you
: have no control on what will happen.
: Say, you worked hard and disabled image-saving options or whatever, but how
: can you disable printscreen from the keyboard or even a digital camera?
: The principle would be:
: 1. Display something and do not worry about what your user will do about it,
: because even if you worry, it's not gonna help.
: 2. Do not display

r****y
发帖数: 26819
5
well, I'd say if you really want to prevent an e-copy of some materials, you
can try DRM, say, PDF with certain restrictions.

【在 D*****n 的大作中提到】
: Thank you and Rodney for the reply. I can't think of a way to
: prevent print-screen or camera-grab either. I'm just trying to
: make it as difficult as it can be to copy & save inside a browser.
: I'll look at the javascript idea first. Someone suggests creating
: home-grown format files and installing a plug-in on the browser
: side to recognize them. That sounds too much a hustle.
:
: how
: it,

r****y
发帖数: 26819
6
As to Plugin, Flash might be a little useful if you are an Actionscript
guru.

【在 D*****n 的大作中提到】
: Thank you and Rodney for the reply. I can't think of a way to
: prevent print-screen or camera-grab either. I'm just trying to
: make it as difficult as it can be to copy & save inside a browser.
: I'll look at the javascript idea first. Someone suggests creating
: home-grown format files and installing a plug-in on the browser
: side to recognize them. That sounds too much a hustle.
:
: how
: it,

r****y
发帖数: 26819
7
Exactly.
My suggestion is: Free preview with watermarks and low resolution; paid
downloadable copy with resonable price.

how
it,

【在 y********o 的大作中提到】
: Right, quite many image galleries use javascript to disable the image save
: option. But, as long as the object is displayed on the client side, you
: have no control on what will happen.
: Say, you worked hard and disabled image-saving options or whatever, but how
: can you disable printscreen from the keyboard or even a digital camera?
: The principle would be:
: 1. Display something and do not worry about what your user will do about it,
: because even if you worry, it's not gonna help.
: 2. Do not display

D*****n
发帖数: 363
8

Someone else also suggests me using Action Script to pull the pages
from the server to clients. I just wonder if we can fit this script
in an ASP.NET page. Have no experience with action scripts before.

【在 r****y 的大作中提到】
: As to Plugin, Flash might be a little useful if you are an Actionscript
: guru.

r****y
发帖数: 26819
9
Actionscript is used inside flash swf.
So, of course it can fit in asp.net page.

【在 D*****n 的大作中提到】
:
: Someone else also suggests me using Action Script to pull the pages
: from the server to clients. I just wonder if we can fit this script
: in an ASP.NET page. Have no experience with action scripts before.

D*****n
发帖数: 363
10
Can SWF communicate with asp.net server-side controls, perhaps some
custom web controls? If yes, then I may be able to feed it with data
in its own format. That way browsers don't need to download the pdf
file to the temporary directory. Meanwhile I can still secure my web
application with asp.net security settings.

【在 r****y 的大作中提到】
: Actionscript is used inside flash swf.
: So, of course it can fit in asp.net page.

相关主题
How do you like ASP.NET MVC?.net前途如何?
SilverLight 4 is comingopen source dotNet IDE - sharpdevelop
ASP.NET 4.0 WEB API design 的best practiceopen source dotNet IDE - Software Studio
进入DotNet版参与讨论
r****y
发帖数: 26819
11
SWF can communicate with server pages via web service and flashvars.

【在 D*****n 的大作中提到】
: Can SWF communicate with asp.net server-side controls, perhaps some
: custom web controls? If yes, then I may be able to feed it with data
: in its own format. That way browsers don't need to download the pdf
: file to the temporary directory. Meanwhile I can still secure my web
: application with asp.net security settings.

D*****n
发帖数: 363
12
Any good flash/action script/swf IDEs out there? I wanna try and
see how well it works with asp.net pages.

【在 r****y 的大作中提到】
: SWF can communicate with server pages via web service and flashvars.
r****y
发帖数: 26819
13
Flash Pro 8.
it's not simple level coding work. You need to master actionscropt pretty
well
to do it.

【在 D*****n 的大作中提到】
: Any good flash/action script/swf IDEs out there? I wanna try and
: see how well it works with asp.net pages.

N********n
发帖数: 8363
14
Macromedia Flash Paper can convert document into SWF files. It looks
like a mini PDF. You may try it.

【在 D*****n 的大作中提到】
: I want to show users a pdf file page by page on an ASP.NET site,
: but I don't want them to copy the content and save it. I can convert
: the PDF file into images so they can't copy the text, but they still
: are able to save the images by right-clicking them and then choosing
: save. Is it possible to entirely shut this copy/save option down
: within a browser?

N********n
发帖数: 8363
15
I don't think it can. ASP.NET relies on the client-side javascript
post-back, server-side processing and then HTML rendering model to
run a web application. SWF doesn't fit in this. SWF feels like a
somewhat fat-end client-server solution.

【在 D*****n 的大作中提到】
: Can SWF communicate with asp.net server-side controls, perhaps some
: custom web controls? If yes, then I may be able to feed it with data
: in its own format. That way browsers don't need to download the pdf
: file to the temporary directory. Meanwhile I can still secure my web
: application with asp.net security settings.

D*****n
发帖数: 363
16

This Flash Paper baby rocks! Its APIs allow me to shut down everything
except the print screen. Once I enable this flash control to talk to a
secured asp.net server, I'm all set. Should be easy. Thanks a lot.

【在 N********n 的大作中提到】
: Macromedia Flash Paper can convert document into SWF files. It looks
: like a mini PDF. You may try it.

r****y
发帖数: 26819
17
yeah, this is an easy solution.

【在 D*****n 的大作中提到】
:
: This Flash Paper baby rocks! Its APIs allow me to shut down everything
: except the print screen. Once I enable this flash control to talk to a
: secured asp.net server, I'm all set. Should be easy. Thanks a lot.

1 (共1页)
进入DotNet版参与讨论
相关主题
.Text 简易安装SilverLight能做动画吗?
用ACT testing的问题How do you like ASP.NET MVC?
VC.net试验SilverLight 4 is coming
WebBrowser Control问题ASP.NET 4.0 WEB API design 的best practice
[合集] How to disable browser options?.net前途如何?
访问MITBBS.com的问题open source dotNet IDE - sharpdevelop
.Net IDE - 总结网址open source dotNet IDE - Software Studio
cross browser/platform .net!?关于MDA
相关话题的讨论汇总
话题: browser话题: save话题: disable话题: swf话题: copy