hello I'm currently making a server application that accepts uploads via a web page, issue is the uploaded file, is a multipart form-data file and I do not know how I should go about handling the multipart file,
example file :
-----------------------------231197858634295637401474252101
Content-Disposition: form-data; name="Uploadfile"; filename="steam.desktop"
Content-Type: application/x-desktop
and at the end,
-----------------------------231197858634295637401474252101--
this is data I do not want as they are not useful to me, how would I go about getting what the user uploaded.
right now I'm just using whatever random text file I have on my desktop so I can have a readable output but the plan is to be able to upload Images
I am using the httplistener class and Mono