ASP.NET Web Forms
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
-
Better UpdatePanel, True Ajax
True Ajax UpdatePanel. Right now there is to much data sent and received
236 votes -
Move js postback script to external file
Can you provide an option to remove this script?
var theForm = document.forms['aspnetForm'];
if (!theForm) {
theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}With this option we can move that to an external script.
Thank you
18 votes -
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 JS2 votes