Search Results

4
votes

When can I delete a file after using it in Response.WriteFile()?

If you're writing a file to the client with Response.WriteFile(), a call to Response.Flush() will make sure it's been fully output to the client. Once that's done you can delete it off of the webse …
1
vote

Resetting height of an HTML element via CSS

change the height to 'auto' and see if that works for you. Auto is the default height for elements, it means the browser calculates the height itself. …