ASP.NET Web Forms
-
Menu Control Jquery Mobile compatible
the ASP.NET Menu control creates a small Javascript part which interfere with JQM, The menuitems are limited in with
I have a Workaround <script type="text/javascript"> Sys.WebForms.Menu = "";</script>
but would be better not to render the Java Script.
In general 1st choice would be a WYSIWIG support for JQM
2nd best choice is to have a "externalJS=true" and disable all JS1 vote -
Please allow the report viewer control to fully work on most browsers.
Printing and exporting functions only work on Internet Explorer versions.
Example: http://stackoverflow.com/questions/9276424/reportviewer-print-button-in-google-chrome
3 votes -
add intellisense support for DynamicControl's DataField property when used with ItemType
example:
<asp:FormView runat="server" ID="fv1" DefaultMode="Insert" ItemType="Product" InsertMethod="fv1_InsertItem">
<InsertItemTemplate><asp:TextBox runat="server" ID="txt1" Text="<%# BindItem.Name %>"></asp:TextBox>
<asp:DynamicControl runat="server" ID="TextBox1" DataField="Name" Mode="Insert"></asp:DynamicControl>
I would like to see Intellisense in DataField propery like it is in Text property.
1 vote -
use index of a radiobuttonlist instead of name to save the viewstate...
Use index of a radiobuttonlist instead of name to save the viewstate...
Seriously? Give me a break.
1 vote -
1 vote
-
Include Client Side Validation When Using Data Annotations for Validation of Model State
Currently, when using model binding, we can utilize model state validation by adding data annotations to our models. This works nicely as model state errors can be displayed in the ValidationSummary control. This feature requires a round trip to the server, however. I would love to see this extended to include an option to generate client side validation based on the same data annotations.
10 votes -
Provide a URL authorization API
This will allow programmatic configuration of the authorization controlling access to URLs, rather than having to specify the rules at design time in the Web.config
4 votes -
Enable fixed Gridview Header on top ever
Add an property to fix a Gridview Header in the top ever.
1 vote -
Support for enhanced Data Binding scenarios
The Data Bound Update method should accept IEnumerable<Item> to support editing multiple rows, e.g., a shopping cart.
A Data source should support rebinding to the data returned from the Update method to cater for more complex data bound scenarios, e.g., showing a confirmation screen.8 votes -
datagrid modern HTML/Design and Jquery
the datagrid Features are quite ok, But the wizards and the generated HTML ist still the 2.0 stuff.
Webforms is still the fastest way to bring data to the browser. If you dont need full control or tests webforms should get some design improvements, html code optimizations and jquery Background refresh.10 votesThe GridView and ListView controls allow for quite a lot of customization when it comes to what they render. Is your suggestion particularly focusing on the markup generated by the wizards in Visual Studio or the HTML generated by the control at runtime itself?
-
Open Source ASP.NET Web Forms
You guys have open sourced ASP.NET MVC, Web API, and Web Pages as well as Entity Framework. Please open source Web Forms as well.
24 votes -
Uncouple Web Forms from .NET Framework
Separate Web Forms from .NET Framework so it can be updated more often like MVC.
32 votesThis work is being investigated for the next release of ASP.NET
-
Enable databinding in every postback event, not only in databound controls
I like the new Databinding functionality in webforms, but it's limited to the databound controls. Wouldn't it be nice if every control that causes a postback had a "PostbackMethod" property (like the "SelectMethod" property on the databound controls). This method would then be called during postback with parameters bound using ValueProviders.
I know this might be achieved with a formview, but that's somewhat limited if you want to do more than just CRUD.
Oh, and just opensource the whole webforms stack, while you're at it :D
4 votes -
can i will get sample code for calculator winforms if anyOne wants to help me please email me : musathikfccqatar@gmail.com
can i will get sample code for calculator winforms if anyOne wants to help me please email me : musathikfccqatar@gmail.com
1 vote -
Extract to User Control Code Behind
Love the Extract to User Control Option. Is it possible to pull the code behind events with the text into the control. Button clicks, all postback events for example...
0 votes -
TreeView WebControl Enable Drag And Drop functionality
Enable Drag And Drop functionality like DevExpress ASPxTreeList and Telerik RadTreeView.
1 vote -
GetXXXXX from the System.Web.Helpers.Webgrid should be protected instead of private
This would allow developers to easily extend the webgrid to their needs.
4 votes -
Support Razor in aspx pages :)
It would be a very great future to use Razor and html helpers even in an asp.net aspx project pages. ( not only in mvc project)
81 votes -
Support MVP pattern for ASP.NET WebForms applications
With al those new and improved pattern implementations for VS2010 like ASP.NET MVC and MVVM for SL and WP7. There is also one missing and thats the MVP pattern for ASP.NET WebForms. Almost all my clients who develop with ASP.NET WebForms makes an big mess of their WebApp architecture and that's because they don't use an proper User Interface pattern and develop all their businesslogic in their WebForms, not to mention the testability. Several years ago the patterns & practices team developed Web Client Software Factory who contained the ObjectContainerDataSource with the MVP pattern. The ObjectContainerDataSource is in my honoust…
28 votesThe open source Web Forms MVP framework (http://webformsmvp.com) is worth a look.
-
Implement true page life per session
ASP.NET specifically:
I have recently been developing some server controls, and let me tell you: Efficient Memory Management is nearly impossible to achieve on the framework... And for one simple reason:Developers cannot catch a true page's life without going to extremes like creating your own HTTPModule to catch a request, play with it, and then redirect. Not only that, but the HTTPModule can't even interact with the Application code...
The most explicit example of this comes from some recent work i've been doing developing a custom grid control. Basically, the developer asked me this:
Can you make a grid…
6 votes
- Don't see your idea?