Bear with me here...I have quite a unique usecase where I have a C# application ruing as an http server serving up html to localhost. I can submit form data to the server and parse it, however, when it comes to POST form submits, there's little point to reading the file data, transmitting the data to the server, then processing it when the C# application can read it directly.
I know the filename in the field included in the POST data isn't absolute, so I was wondering other than a bit of jQuery to convert file fields to just a text input with a button beside them and setting the value when the file field changes, and then submitting the form without the file field, am I able to just send the file info without the browser reading the data?
