Ask a Question related to ASP.NET Security, Design and Development.
-
hungrymind@gmail.com #1
ASP.net control Security
Hi All,
I have created a custome control for ASP.net. That control has lot of
javascript files & images. Is there any way to protect those from
users. Like if I sell/distribute those file to others, I have to give
javascript & image files seperately. I want to protect those image
(like logo) from the developer using that control, so that they cannot
change those images. Also same with the script, as scripts are main
area which gives the feature. Is there any dotnet solution to such
problems. Can I use resource to encapsulate such files within an
assembly? Do I have to create new file (for images) everytime by
reading data from resource. This will slower down the page loading. Can
I also hide scripts, coming on to clients browser. Please give me some
solution which dotnet have provided, otherwise I have to use other
alternatives like encryption, multiple javascript files to locate
correct file etc etc, which I hate to do.
I think using dhtml behaviour with htc will work fine. Can any body
will suggest?
regards,
hungrymind@gmail.com Guest
-
Security question for a Winforms user control on a web page
I have a winforms user control that I need to use in our web page. The control connects to a remoting object. When I try and make the initial... -
Get UserGroup of Active Directory to control the security
Hi, I have an ASP.Net Intranet App with C#. I don't need to ask users about by User and PWD since they are already logged in. This is acheived... -
Can't configure security for client side control
I've created a Windows.Forms control and placed it on an aspx page with the <object> tag and verified that it works nicely. But, when I add... -
ASP.NET security control
Hi All, I will be writing an asp.net application which require users to log on before they can view the particular information. so here the... -
WindowsForm control gives security warnings under IE
I have written a .NET WindowsForm control which is deployed on the server and runs on the client machines in the IE browser. All the control is... -
Brock Allen #2
Re: ASP.net control Security
Well, if you're using javascript in the browser then there's little you can
do to protect it, since the browser needs the source code (the javascript)
to execute it.
As for the javascript on the server, many apps request external files to
support their custom controls. The validation controls are a prime example
of that. If you're worried about your customers stealing your IP, then that's
what a lisence agreement is all about. If they misuse or steal your IP you
need to have a legal avenue. Once you give your code to someone, even if
you obfuscate and doo all the other tricks, with enough time and effort they'll
be able to access it.
-Brock
DevelopMentor
[url]http://staff.develop.com/ballen[/url]
> Hi All,
>
> I have created a custome control for ASP.net. That control has lot of
> javascript files & images. Is there any way to protect those from
> users. Like if I sell/distribute those file to others, I have to give
> javascript & image files seperately. I want to protect those image
> (like logo) from the developer using that control, so that they cannot
> change those images. Also same with the script, as scripts are main
> area which gives the feature. Is there any dotnet solution to such
> problems. Can I use resource to encapsulate such files within an
> assembly? Do I have to create new file (for images) everytime by
> reading data from resource. This will slower down the page loading.
> Can
>
> I also hide scripts, coming on to clients browser. Please give me some
> solution which dotnet have provided, otherwise I have to use other
> alternatives like encryption, multiple javascript files to locate
> correct file etc etc, which I hate to do.
>
> I think using dhtml behaviour with htc will work fine. Can any body
> will suggest?
>
> regards,
>
Brock Allen Guest



Reply With Quote

