General ASP.NET
-
Differntiate between Unauthenticated access and Unauthorized access
In the ASP.NET security model, the documentation goes out of its way to talk about the difference between Authorization and Authentication.
Unfortunately, the framework itself makes no such distinction. It treats an unauthenticated user access the same as a user who does not have authorization and returns the same error.
I realize this is probably a result of the fact that most web servers treat file access errors as 403's, because HTTP doesn't really give you any other status code, and you want to differentiate between server oriented 403's and framework generated 403's, but there must be a better way…
3 votes -
2 votes
-
1 vote
-
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
-
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 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 -
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 -
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 -
1 vote
-
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 -
ApiExplorer support for AsyncEntitySetController & EntitySetController
Please enhance the ApiExplorer to fully support the AsyncEntitySetController & EntitySetController. It is possible to generated some help documentation by using ApiExplorerSetting( IgnoreApi=false) attribute, but the help pages contain the incorrect relative path / route, the Queryable Gets are ignored, and the request/response samples are missing.
Optionally, exposing some of the internal class such as HttpRouteParser, HttpParsedRoute, etc… would allow for custom ApiExplorers (like ODataApiExplorer).
1 vote -
Allow for use of dynamic variable names in .NET and VB specifically
While, when building an SQL statement, within a Web Pages .vbhtml module, I can write -
HWB_Series_Books_sqlCommand = "SELECT * FROM Titles WHERE Titles.Available_in_Series_" & Req_Series & " = 1"
where Req_Series is a variable containing, in my case, a capital letter in the range A to P, thus creating a dynamic reference to one of 16 fields, all of whose names begin with the same first 20 letters.
OR
in the case of Form Controls I could write something like
Dim LabelName = "Label 1"
Me.Controls(LabelName).Text = "Publisher"thus being able to dynamically change the label whose text is…
1 vote -
Add class typed parameters to HtmlHelpers
Using html helpers can get pretty frustrating because of the overloads, ordering of parameters, etc.. Creating them is more frustrating when you try to follow these conventions. It would be useful if you migrated towards defined settings classes similar to how things are typically done in javascript:
@Html.EditorFor(
new EditorForOptions {
Expression = x => x.Field,
TemplateName = "Test",
AdditionalViewData = new { ... },
HtmlFieldName = "field",
AdditionalViewData = new { ... }
}
);or
@Html.EditorFor(
x => x.Field,
new EditorForOptions {
TemplateName = "Test",
...
AdditionalViewData = new { ... }
}
);It eliminates the need…
1 vote -
1 vote
-
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.
-
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
- Don't see your idea?