HTTP Handler

  • Thread starter Thread starter rn5a
  • Start date Start date
R

rn5a

Can HTTP handlers be used to upload files to a server in ASP.NET? If
yes, then how?

Thanks
 
A handler can do anything. Question is, why would you want to use a handler
that intercepts requests and performs some work, to upload a file?
 
A handler can do anything. Question is, why would you want to use a handler
that intercepts requests and performs some work, to upload a file?

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless Author Plug
OWC Black Book 2nd Edition
Exclusively onwww.lulu.com/owc
$24.99







- Show quoted text -

Then what do I use, Alvin, to upload files to a server using ASP.NET?

Thanks for your prompt response.

Regards
 
Then what do I use, Alvin, to upload files to a server using ASP.NET?
<input type="file" name="fileUpload" size="20" />

--
HTH,

Kevin Spencer
Microsoft MVP

DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net
 
Back
Top