SyprortiofRop
New Member
Has anyone found a solution to this that is pure ASP.NET. There's lots of utilities and a good article on 4 Guys about using the INPUT tage but I can't find anything that also includes encrypting the files (128 bit would be nice)...If you want to encrypt the message/file before sending it to the server using .Net the client will have to have the .Net runtime installed.<BR><BR>If you are saying you want to encrypt it after it gets to the server then you should look into using the classes under System.Security.Cryptography. The SDK docs have examples on how to use symmetric and asymmetric algs to encrypt streams.<BR><BR>Actually what I'm saying is I want clients to securely upload data to my webserver. I'm hoping this is trivial - like simply make sure your connecting using https or something. Once the file gets to the web server, I'll move it somewhere else. I saw an example of uploading a file using an html input server control that was relatively simple to implement. I assume that if I'm connecting over HTTPS then the transmission is encrypted so as long as I move it once it's on the server, things should go fairly well. Am I correct?