General ASP.NET
-
Make WebDeploy transactional
When deploying a site, the previous version should continue to run. If the deployment fails, the site should continue to run on the previous version. If it succeeds, the switch should happen after publication is complete.
225 votes -
Knockout Intellisense for databinding to a specific ViewModel using Design Time Comment like in XAML
It would be helpful if they allowed you to add a html comment specialized in letting the designer know that a specific region is using a specific JavaScript file that represents the view model. That way when the designer can’t figure it out, we can override it to be very specific. This would be very similar to the design time XAML syntax you can use to tell it the data bind type.
144 votescomments will be supported when Web Tools 2012.2 reaches RTM
-
Improve localization support in DataAnnotations
Today it's impossible to fully localize the view models / validations without using hacks or clutter the view models with the ErrorResourceName etc.
It would be a lot easier to handle localization if you created an extension point where one could register custom string providers.
Something like:
LocalizationStringProvider.Clear();
LocalizationStringProvider.Add(new MySqlProvider());Full description: http://blog.gauffin.org/2013/01/better-support-for-localization-in-asp-net/
68 votes -
Add Support for F# Code-Behind ASP.NET
Elevating F# to a more equal footing with VB and C# for ASP.NET
727 votes -
Add Twitter Bootstrapper Template with jQuery in ASP.Net project template
I could see jQuery UI and Modernizer support in asp.net web application project. Meanwhile we are looking more rich UI building blocks like Twitter Bootstrapper. Something like http://addyosmani.github.io/jquery-ui-bootstrap/index.html, which works with jQuery
8 votesWe plan to make all of our web application templates use Bootstrap in our next release.
-
Enable Edit and Continue within IIS Express
Edit and Continue is only allowed with the casini web server which to be honest is really lacking. We try to develop in IIS and without this feature our productivity is lacking due to the recompiles which can take over several minutes due to the large solution we work with.
2 votes -
Make the System.Web.UI.INonBindingContainer interface public
I need to implement the INonBindingContainer interface on my custom controls for the same reason that standard controls do (so that data binding expressions work properly on naming containers that aren't binding containers), but this currently isn't possible because the interface is currently marked internal.
4 votes -
Dynamically add new bundles after Application_Start has occurred
It would be great to have a way to automatically flush the bundle cache and create new bundles when a new folder is created underneath the bundle path as described at http://stackoverflow.com/questions/15328040/how-can-i-dynamically-add-bundles-after-application-start-has-occurred.
11 votes -
1 vote
-
Give an intelligible error when trying to use msdeploy with no password
When doing a TFS build and specifying the build to deploy after build (e.g. via msbuild command line args: /p:DeployOnBuild=true;PublishProfile="DevPubProfile";), the build fails with ERROR_USER_NOT_ADMIN. What took me a bit to realize was that the build server didn't have the user's password. In visual studio the user pub xml has the password but of course that is not in source control.
It makes no sense to even try to deploy without a password for the user, and makes even less sense to say the user isn't admin.
1 vote -
Make integration of mvc with web forms seamless
Currently in order to add asp.net mvc to an existing asp.net webforms project is not exactly pain free. Here's an example
http://www.devcurry.com/2013/05/adopting-aspnet-mvc-enhancements-in.html which actually includes having to add in some guid. Obviously lots of people have existing web forms sites/applications that are not going anywhere but would also like to integrate mvc into them as well. Currently, I would not call this user experience pleasant. I would be nice to be able to easily add mvc to an existing web forms site. It could be a NuGet package, a right-click on the web form site that has "add mvc to…
3 votes -
1 vote
-
Better error handling
When trying to handle errors in ASP.NET, you have to jump through a series of unintuitive and often poorly documented hoops to catch an exception and handle it in a sensible way. The non-senisble and default way to handle exceptions would be to redirect to a static HTML file that responds with an HTTP 200 Status Code, which is so wrong it's crazy that it's even available as an option, nonetheless set as the default.
It's also extremely confusing that IIS and ASP.NET each tries to handle errors on their own way, with their own corresponding, diverging and confusing configuration…
26 votes -
Make a new platform for hosting .net code. Something like IIS but more like SQL Server, where the server software itself is hosting.
I would like to explain the motivation for the idea first, then save the actual idea for last.
I made two observations which lead me to this idea. First, I noticed how much developers, where I have worked, are disappointed when a website hotfix requires a .Net code change. Whereas with procs, they are delighted because of how easy it is to modify the small unit of code and deploy. Second, I noticed that many IT managers and code-savvy end users are comfortable with making complex queries in SQL, or doing a complex formula in Excel, but when it comes…1 vote -
Precompile razor view before publishing
Compiling views on the webserver takes a lot of ressource, and during that time the application is slow to respond.
I would be great if we could publish compiled versions of our views. I know razorgenerator do this, but it's not native and we only want compile views for deployment, not when developing.Thanks
91 votes -
Make ImageMap Selectable Dynamically
My Idea is to make Image Map control selectable.. We have this nice control but the thing is for making the hotspot hilighted we need lots of Jquery and Javascript stuff.. Plus we cannot keep Image MAP selected dynamically..
1 vote -
To set the break point in all the methods of whole projects just in one click..........
To set the break point in all the methods of whole projects just in one click..........
2 votes -
Allow #region in inline markup
If you're using the inline code model, the code editor does 99% of everything you could do in code-behind, but does not allow collapsing regions. For files with a lot of event handlers it would be great to be able to collapse them with a region.
3 votes -
1 vote
-
Masterpage separates css and js automatically
When building an ASP.NET web page I would like to write my JS and CSS in the master page script and style tags, then by added attributes to those tags like <script language="javascript" runat="server" Filepath="virtual"> .NET will remove that tag and contents from the downloaded HTML, but will replace it with a script or link tag pointing to a virtual My.Master.js or My.Master.css file path which will return the contents of the tags, this will allow for in page design but automatically separate resources without maitaining a normal "template.js or template.css" usually done when designing a website template.
3 votes
- Don't see your idea?