I wonder where IIS saves the uploaded file? There must be some default directory. Is it possible to save an uploaded file to a user defined directory on IIS?
I wonder where IIS saves the uploaded file? There must be some default directory.
Share
There is a temp folder indeed, but what you usually do is save your uploaded file in the code behind (assuming you are talking about ASP.NET):
aspx-file:
cs-file:
If you need to set the temp folder location for any other reason (which is possible), please elaborate.