After using FileUpload.SaveAs(), how to release the saved file from IIS (worker process)How to upload files to server using JSP/Servlet?Exception in deleting image uploaded to the server in ASP.NetCan't upload tiff file which is 5MB or more in sizeHow to save as a new file and keep working on the original one in Vim?How does HTTP file upload work?Save uploaded file - usingThe action can't be completed because the file is open in IIS Worker ProcessRefreshing Image Control To Display File Upload PreviewFileUload is static object or no?Access to the path Denied after uploading file
Inadvertently nuked my disk permission structure - why?
Is there a reason why I should not use the HaveIBeenPwned API to warn users about exposed passwords?
How to judge a Ph.D. applicant that arrives "out of thin air"
A planet illuminated by a black hole?
Spoken encryption
What is the lowest-speed bogey a jet fighter can intercept/escort?
How were the LM astronauts supported during the moon landing and ascent? What were the max G's on them during these phases?
How can I stop myself from micromanaging other PCs' actions?
What is the difference between 1/3, 1/2, and full casters?
Automatic Habit of Meditation
How do we explain the E major chord in this progression?
Where to place an artificial gland in the human body?
What should I say when a company asks you why someone (a friend) who was fired left?
Iterate over non-const variables in C++
Why is a dedicated QA team member necessary?
Why isn't there a serious attempt at creating a third mass-appeal party in the US?
Can the Artificer's infusions stack? Returning weapon + radiant weapon?
High income, sudden windfall
How to contact Apple to check if they will permit an iOS app?
How can I tell if there was a power cut while I was out?
Using "Kollege" as "university friend"?
Character is called by their first initial. How do I write it?
What was the rationale behind 36 bit computer architectures?
How do campaign rallies gain candidates votes?
After using FileUpload.SaveAs(), how to release the saved file from IIS (worker process)
How to upload files to server using JSP/Servlet?Exception in deleting image uploaded to the server in ASP.NetCan't upload tiff file which is 5MB or more in sizeHow to save as a new file and keep working on the original one in Vim?How does HTTP file upload work?Save uploaded file - usingThe action can't be completed because the file is open in IIS Worker ProcessRefreshing Image Control To Display File Upload PreviewFileUload is static object or no?Access to the path Denied after uploading file
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have an ASP.NET website application that allows a user to upload an image file to a folder; the uploaded image is then used by the app. I am using the ASP.NET "FileUpload" control, and its "SaveAs" method to do this.
If I do this once, everything works fine... however, if I try to upload another file with the same name, I get an error that it cannot do so because the previously uploaded file is being used by the IIS "Worker Process".
I tried closing the client browser, and starting a fresh session... but I still can't overwrite the existing file. Even if I log into the server and try to delete the image file I can't until I go to the Task Manager and stop the "Worker Process (w3wp.exe)". Once that process is stopped, I can either re-upload the image file or delete it directly.
How can I do the "FileUpload.SaveAs()" in such a way that the file is released from the IIS Worker Process after it is saved?
Here is the code where I save the image file:
If FileUpload1.PostedFile IsNot Nothing AndAlso
FileUpload1.PostedFile.FileName <> "" Then
FileUpload1.SaveAs(Server.MapPath(imgPath))
design1.ImageUrl = imgPath
Page.ClientScript.RegisterClientScriptBlock(GetType(Page),
"Alert", "alert('Image saved!')", True)
So, everything works the first time, but how to "unlock" the image file after a successful "SaveAs()". Only workaround I can think of now is saving every image file under a unique name (e.g. timeStamp'd).
asp.net file-upload save-as
add a comment |
I have an ASP.NET website application that allows a user to upload an image file to a folder; the uploaded image is then used by the app. I am using the ASP.NET "FileUpload" control, and its "SaveAs" method to do this.
If I do this once, everything works fine... however, if I try to upload another file with the same name, I get an error that it cannot do so because the previously uploaded file is being used by the IIS "Worker Process".
I tried closing the client browser, and starting a fresh session... but I still can't overwrite the existing file. Even if I log into the server and try to delete the image file I can't until I go to the Task Manager and stop the "Worker Process (w3wp.exe)". Once that process is stopped, I can either re-upload the image file or delete it directly.
How can I do the "FileUpload.SaveAs()" in such a way that the file is released from the IIS Worker Process after it is saved?
Here is the code where I save the image file:
If FileUpload1.PostedFile IsNot Nothing AndAlso
FileUpload1.PostedFile.FileName <> "" Then
FileUpload1.SaveAs(Server.MapPath(imgPath))
design1.ImageUrl = imgPath
Page.ClientScript.RegisterClientScriptBlock(GetType(Page),
"Alert", "alert('Image saved!')", True)
So, everything works the first time, but how to "unlock" the image file after a successful "SaveAs()". Only workaround I can think of now is saving every image file under a unique name (e.g. timeStamp'd).
asp.net file-upload save-as
add a comment |
I have an ASP.NET website application that allows a user to upload an image file to a folder; the uploaded image is then used by the app. I am using the ASP.NET "FileUpload" control, and its "SaveAs" method to do this.
If I do this once, everything works fine... however, if I try to upload another file with the same name, I get an error that it cannot do so because the previously uploaded file is being used by the IIS "Worker Process".
I tried closing the client browser, and starting a fresh session... but I still can't overwrite the existing file. Even if I log into the server and try to delete the image file I can't until I go to the Task Manager and stop the "Worker Process (w3wp.exe)". Once that process is stopped, I can either re-upload the image file or delete it directly.
How can I do the "FileUpload.SaveAs()" in such a way that the file is released from the IIS Worker Process after it is saved?
Here is the code where I save the image file:
If FileUpload1.PostedFile IsNot Nothing AndAlso
FileUpload1.PostedFile.FileName <> "" Then
FileUpload1.SaveAs(Server.MapPath(imgPath))
design1.ImageUrl = imgPath
Page.ClientScript.RegisterClientScriptBlock(GetType(Page),
"Alert", "alert('Image saved!')", True)
So, everything works the first time, but how to "unlock" the image file after a successful "SaveAs()". Only workaround I can think of now is saving every image file under a unique name (e.g. timeStamp'd).
asp.net file-upload save-as
I have an ASP.NET website application that allows a user to upload an image file to a folder; the uploaded image is then used by the app. I am using the ASP.NET "FileUpload" control, and its "SaveAs" method to do this.
If I do this once, everything works fine... however, if I try to upload another file with the same name, I get an error that it cannot do so because the previously uploaded file is being used by the IIS "Worker Process".
I tried closing the client browser, and starting a fresh session... but I still can't overwrite the existing file. Even if I log into the server and try to delete the image file I can't until I go to the Task Manager and stop the "Worker Process (w3wp.exe)". Once that process is stopped, I can either re-upload the image file or delete it directly.
How can I do the "FileUpload.SaveAs()" in such a way that the file is released from the IIS Worker Process after it is saved?
Here is the code where I save the image file:
If FileUpload1.PostedFile IsNot Nothing AndAlso
FileUpload1.PostedFile.FileName <> "" Then
FileUpload1.SaveAs(Server.MapPath(imgPath))
design1.ImageUrl = imgPath
Page.ClientScript.RegisterClientScriptBlock(GetType(Page),
"Alert", "alert('Image saved!')", True)
So, everything works the first time, but how to "unlock" the image file after a successful "SaveAs()". Only workaround I can think of now is saving every image file under a unique name (e.g. timeStamp'd).
asp.net file-upload save-as
asp.net file-upload save-as
asked Mar 26 at 16:29
user1691949user1691949
213 bronze badges
213 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55361991%2fafter-using-fileupload-saveas-how-to-release-the-saved-file-from-iis-worker%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55361991%2fafter-using-fileupload-saveas-how-to-release-the-saved-file-from-iis-worker%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown