General ASP.NET
Announcement: This forum has been replaced by Visual Studio Developer Community to provide you one convenient and responsive system for all feedback. You can now suggest new ideas, browse and vote on existing ideas in the Visual Studio Developer Community. |
We’d like your suggestions and ideas to help us continuously improve future releases of ASP.NET, so we’ve partnered with UserVoice, a third-party service, to collect your feedback. Please do not send any novel or patentable ideas, copyrighted materials, samples or demos for which you do not want to grant a license to Microsoft.
This site is for feature suggestions; if you need to file a bug, you can visit our Developer Community website to get started.
Note: your use of the portal and your submission is subject to the UserVoice Terms of Service & Privacy Policy and license terms.
We look forward to hearing from you!
- The ASP.NET Team
-
Show corrolation between request started and ended in IIS Express logs
When working with a REST-api the log from IISExpress would be a lot more useful if you could add a corrolation id between the request start and end.
The "request started" logs contain the request method, but the "request ended" does not, which makes it hard to tell which methods fail and succeeds.
E.g. if you have PUT and DELETE methods for the same url the log would look exactly the same;
IISExpress: Request ended: http://localhost:9002/api/customers/1 with HTTP status 200.0
IISExpress: Request ended: http://localhost:9002/api/customers/1 with HTTP status 401.0Was it the PUT or the DELETE that failed with 401?
Also;…
18 votes -
Don't stop IIS-Express when stopping debugger with enabled Edit&Continue
Currently if Edit & Continue is enabled (in VS 2013 Update 3 on x64) stopping the debugger always stops IIS-Express. See MS-Blog http://blogs.msdn.com/b/webdev/archive/2013/07/11/enable-edit-and-continue-debugging-option-is-now-on-by-default-for-new-web-applications-in-vs2013-preview.aspx
This is very un-handy. Please don't stop IIS-Express all the time.
71 votes -
Show website details in "Title" column for iisexpress.exe process when attaching the debugger in Visual Studio
If you want to attach the debugger from Visual Studio to a web application running under IIS express, there is no way to distinguish between different iisexpress.exe processes. Currently if I have 10 iisexpress processes in the list I have to look at the PID number in the systemtray GUI for IIS Express and then find in "Available processes" list. The ASP.NET development server display "ASP.NET Development Server - Port xyz" in the title column of the available processes list. For IIS Express the website directory or url could be displayed in that same column.
52 votes