Is this possible

  • Thread starter Thread starter Nikolay Petrov
  • Start date Start date
N

Nikolay Petrov

How to run code at Client-side in .NET
Like ActiveX controls.
I would like to make an upload page where the data is compressed
client-side, and then uploaded as streams(maybe in XML as binary type).
So how to run the compression code at client.
I want to use 100% .NET solution.

Thanks
 
As you said, make an ActiveX. There can't be 100% .NET solution on the
client side unless you are sure all your users have dotnet installed on
their machines.

Eliyahu
 
Try :
http://windowsforms.net/articles/iesourcing.aspx

AFAIK IIS provides also compression support (not sure for the upload
though). You could also accept zip files (nowadays quite easy done by a user
with "send to").

With a client side solution, the user will have to grant some rights to your
control for local file access...

Patrice
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top