3
votes
2answers
744 views
What could be good ways to deploy ASP.Net Web Applications?
We currently deploy web applications by creating a database and running SQL scripts through query analyzer. Then we copy the output from "publish website" and set up that website in IIS.
W …
2
votes
ASP.NET : How to detect file upload Mime type?
in the aspx page:
<asp:FileUpload ID="FileUpload1" runat="server" />
in the codebehind (c#):
string contentType = FileUpload1.PostedFile.Cont …
2
votes
How do you prevent downloads from being run instead of saved in IE
The non-technical way to do this would be to put in download instructions in the form of an image of the dialog box in question, with a friendly circle around the save button, and some text that te …
