To download a SQL file from an IIS hosted website the website needs to know how to handle the file. In general terms a SQL file is plain text, so the respective MIME type would be text/plain This can be added to IIS manually using the MIME types editor. Or for a more reliable approach... Continue Reading →
Launch Cassini from the command line
A simple batch file will do this: taskkill /F /IM WebDev.WebServer.exe START /D "C:\Program Files\Common Files\microsoft shared\DevServer\9.0\" /B WebDev.WebServer.EXE /port:5002 /path:"$PROJECT PATH" /vpath:"/PROJECT" Replace $PROJECT with the local path of your web solution. The VPATH value refers to the virtual folder that is used. This can be replaced with just / if your application runs... Continue Reading →