Tagged Questions
Web Forms is a Microsoft framework that extends the ASP.NET Framework to provide the basis for building web-based User Interfaces consisting of pages and controls.
179
votes
40answers
13k views
Why does the ASP.Net Web Forms model “suck”? [closed]
I've heard Jeff Atwood, Joel Spolsky, and many other legendary people talk about how the ASP.NET Web Forms model sucks (so this question is kind of directed to them, hopefully Jeff is reading).
Now, ...
40
votes
30answers
3k views
What's your choice for your next ASP.NET project: Web Forms or MVC?
Let's say that you will start a new ASP.NET web site/application tomorrow. Would you chose Web Forms or MVC, and why?
28
votes
4answers
57k views
Set the selected index of a Dropdown using jQuery
How do I set the index of a dropdown in jQuery if the way I'm finding the control is as follows:
$("*[id$='" + originalId + "']")
I do it this way because I'm creating controls dynamically and ...
25
votes
7answers
15k views
One Update Panel vs. Multiple Update Panels
I have an ASP.NET web page that displays a variety of fields that need to be updated best on certain conditions, button clicks and so on. We've implemented AJAX, using the ASP.NET Update Panel to ...
24
votes
4answers
21k views
Radio buttons on Rails
Similar to this question: http://stackoverflow.com/questions/621340/checkboxes-on-rails
What's the correct way of making radio buttons that are related to a certain question in Ruby on Rails? At the ...
22
votes
3answers
12k views
Labels for radio buttons in rails form
Same as http://stackoverflow.com/questions/658689/how-to-associate-labels-with-radio-buttons
but for a rails app.
I have a form with some radio buttons, and would like to associate labels with them. ...
19
votes
11answers
1k views
Tips for Developers moving from ASP.NET Webforms To ASP.NET MVC
What should developers moving from ASP.NET Webforms watch out for when they move to ASP.NET MVC?
19
votes
6answers
13k views
Using jQuery for AJAX with ASP.NET Webforms
Anyone know of a link to a good article/tutorial for getting started using jQuery for AJAX calls rather than ASP.NET AJAX? I'm trying to avoid using UpdatePanels entirely in this app, which I haven't ...
19
votes
8answers
3k views
Should I pursue ASP.NET WebForms or ASP.NET MVC [closed]
Firstly, I'm a software engineer doing web development in ASP.NET. We have a custom framework that we use that sits on top of .NET so most of my development work leverages more of our internal ...
18
votes
11answers
22k views
jQuery Validation plugin in ASP.NET Web Forms
I would really like use the jQuery Validation plugin in my ASP.NET Web Forms application (not MVC). I find it easier than adding asp validators everywhere and setting the control to validate field on ...
18
votes
7answers
10k views
Best way in asp.net to force https for an entire site?
About 6 months ago I rolled out a site where every request needed to be over https. The only way at the time I could find to ensure that every request to a page was over https was to check it in the ...
17
votes
14answers
1k views
ASP.NET MVC users - do you miss anything from WebForms?
There are lots of articles and discussions about the differences between ASP.NET WebForms and ASP.NET MVC that compare the relative merits of the two frameworks.
I have a different question for ...
16
votes
4answers
3k views
Is it possible to share a masterpage between MVC and webforms?
I am adding MVC to a project that has MANY legacy webform pages. This works fine. However, I currently have a separate masterpage for MVC and for the webforms. The two master pages produce ...
16
votes
6answers
1k views
How to decide which is right, WebForms or MVC when doing ASP.NET
So I'm about to start of a small project for my sporting club for member registrations and I'm trying to decide between WebForms or MVC.
Allit will be is a user login and data capture forms (or and ...
16
votes
9answers
4k views
What is the best way to unit test webforms apps ( ASP.NET )
What is the best way to Unit test my webforms applications?
Looks like people are loving Watin, and selenium.
15
votes
4answers
2k views
How to implement TDD in ASP.NET WebForms
I know that the reason that Microsoft came out with ASP.NET MVC was to make it simpler to do Test Driven Design (TDD) for ASP.NET. However, I have a rather large brown field (existing) application in ...
15
votes
4answers
4k views
Why does ASP.Net RadioButton and CheckBox render inside a Span?
I would expect this:
<asp:CheckBox ID="CheckBox1" runat="server" CssClass="myClass" />
<asp:RadioButton ID="RadioButton1" runat="server" CssClass="myClass" />
<asp:TextBox ...
14
votes
4answers
2k views
How can I implement Ninject or DI on asp.net Web Forms?
There are plenty of examples for having it worked on an MVC application. How is it done on Web Forms?
14
votes
5answers
3k views
ASP.NET MVC vs WebForms: speed and architecture comparison
I had an argument with one of my friends who is an architect at a pretty large internet company. Basically he was saying that ASP.NET MVC is not for large-scale enterprise applications, that it is not ...
14
votes
6answers
2k views
What is the 'page lifecycle' of an ASP.NET WebForm?
I'm looking to get a more thorough understanding of the ASP.NET page lifecycle. I'm in the process of building custom form controls and have found my knowledge in this area to be lacking.
Are there ...
13
votes
5answers
1k views
Best Practices for Passing Data Between Pages
The Problem
In the stack that we re-use between projects, we are putting a little bit too much data in the session for passing data between pages. This was good in theory because it prevents ...
13
votes
10answers
2k views
Why Repeaters in ASP.NET?
I'm a Ruby on Rails / PHP guy, and my company got me to work with ASP.NET. It's not too bad, I'm glad to learn a new language but since I started working with this technology everyone is bothering me ...
13
votes
4answers
5k views
How do you stop RadioButtonList Label text from wrapping under the button
I have a radio button list and some of the labels are quite long so they wrap and the second line appears underneath the radio button. Ideally I would like the text to wrap with the second line ...
13
votes
4answers
2k views
How to migrate existing asp.net application to asp.net MVC pattern format
I want to migrate existing asp.net application to asp.net MVC pattern format now. What procedure should I will follow? Any step-by-step instructions would be very helpful.
13
votes
9answers
5k views
Traditional ASP .NET Web Forms vs MVC
As someone with some winforms and client applications experience - is it worth going back and learning the way traditional ASP .NET pages work, or is it okay with moving straight into ASP .NET MVC?
...
12
votes
4answers
3k views
How to include a partial view inside a webform
Some site I'm programming is using both ASP.NET MVC and WebForms.
I have a partial view and I want to include this inside a webform. The partial view has some code that has to be processed in the ...
12
votes
10answers
1k views
ASP.Net RSS feed
How do I create an rss feed in ASP.Net? Is there anything built in to support it? If not, what third-party tools are available?
I'm thinking webforms, not MVC, though I suppose since this isn't a ...
11
votes
2answers
96 views
Is [HTML5 + jQuery] (no ASP.NET) + WCF a valid solution for an enterprise level web application?
To gain some perspective, we've been using ASP.NET web forms for ages.
We're also aware of the benefits of MVC over web forms, however an alternative option is being tossed around which is to bypass ...
11
votes
3answers
424 views
data collection for statistics: from web to a database
I'm a statistician by trade and I'd like some recommendations on how to set up a website that can collect data into a database. For personal use, I use Google Forms to collect data, and everything ...
11
votes
4answers
537 views
Abstract: Should I choose ASP.Net MVC over Web Forms or
I've been working with web for over 7 yrs and I've upgraded from html->ASP->ASP.Net and now the new flavors of ASP.Net itself. I was to begin with MVC last year but due to deadline and the complexity ...
11
votes
6answers
455 views
How does Stackoverflow's “Post Your Question” button stay disabled until question gets submitted?
I am using asp.net webforms; I want to submit a form and keep the button disabled until it gets saved to my database, exactly like Stackoverflow. Any suggestion?
protected void Lb_Save_Click(object ...
10
votes
11answers
958 views
What should every ASP.Net programmer know? [closed]
How does one be called a ninja ASP.Net programmer?
What set of tools and immediate knowledge(Without having to open MSDN, SO, or Google) should be known to be considered a master?
Webforms or ...
10
votes
6answers
1k views
Things I cannot do in ASP.NET MVC
Are there some things I cannot do with ASP.NET MVC?
Things that are only possible with ASP.NET WebForms,
or extremely much easier with WebForms?
We consider using ASP.NET MVC for a new project.
...
10
votes
5answers
43k views
10
votes
6answers
11k views
Use Javascript to change which submit is activated on enter key press
I have a form on an HTML page with multiple submit buttons that perform different actions. However, when the user is typing a value into a text input and hit enters, the browsers generally act as ...
10
votes
3answers
4k views
Is there a performance difference between asp.net mvc and web forms? [closed]
Possible Duplicate:
ASP.NET MVC Performance
I know there is a learning curve, but what about performance? It seems to me that web forms would be less performant, but I havent tried MVC yet ...
10
votes
15answers
6k views
Disable button on form submission
I have a button that I would like to disable when the form submits to prevent the user submitting multiple times.
I have tried naively disabling the button with javascript onclick but then if a ...
9
votes
2answers
95 views
Storing Anything in ASP.NET Session Causes 500ms Delays
The Problem:
When you use session in an ASP.NET site, it causes dramatic delays (multiples of 500ms) when loading multiple requests at nearly the same time.
More Specifically, My Problem
Our ...
9
votes
3answers
289 views
StackOverflow like URL Routing
Its my understanding that the questions in StackOverflow has the following format
http://stackoverflow.com/questions/{question-id}/{slug-made-from-question-title}
So basically the question is ...
9
votes
1answer
327 views
Turning off the WebFormViewEngine when using razor?
I downloaded Glimpse this morning to try it out and noticed this when I click on the views tab:
It checks all of the loaded view engines. I found where the RazorViewEngine is specified in ...
9
votes
4answers
8k views
jQuery DataTables server side processing and ASP.Net
I'm trying to use the server side functionality of the jQuery Datatables plugin with ASP.Net. The ajax request is returning valid JSON, but nothing is showing up in the table.
I originally had ...
9
votes
5answers
10k views
How to capture submit event using jQuery in an ASP.NET application?
I'm trying to handle the submit event of a form element using jQuery.
$("form").bind("submit", function() {
alert("You are submitting!");
});
This never fires when the form submits ...
9
votes
4answers
690 views
When to use ASP.NET MVC vs. ASP.NET Web Forms?
One of the common questions asked regarding ASP.NET MVC is why should you use it over ASP.NET Web Forms? The answer generally includes ViewState and clean URLs, amongst others. Towards the end ...
9
votes
9answers
3k views
What's the best way to highlight a required field on a web form?
I don't find the oft-used "*" to be very nice looking - can anyone suggest a nicer-looking method or point me to an example?
I tried making the field highlighted in red as one person suggested but I ...
9
votes
5answers
813 views
Is ASP.NET webforms swept under the rug to make room for mvc?
I've read all the marketing speak about how mvc and webforms are complementary etc...
However it seems that all the blogs talk about is mvc and the only news coming out is about mvc.
Is Microsoft ...
9
votes
10answers
2k views
How do you get the logged in Windows domain account from an ASP.NET application?
We have an ASP.NET application that manages it's own User, Roles and Permission database and we have recently added a field to the User table to hold the Windows domain account.
I would like to ...
8
votes
5answers
448 views
How to render an asp.net WebForm page from Global.asax?
for one reason or another I'm messing around with a "minimalistic" ASP.Net just for fun. I've disabled a lot of things and am attempting to reimplement things. One thing I can't quite figure out is ...
8
votes
6answers
962 views
Most Efficient Way To Watermark Image C# On The Fly?
I have an ecommerce store built in asp.net c# (Webforms) and a lot of the new product images are very hard to source, so I'd like to watermark them with our logo or domain name.
There are too many ...
8
votes
4answers
2k views
HTML Submit-button: Different value / button-text?
I'd like to create an HTML form submit button with the value 'add tag', however, the web page is in Swedish, so I'd like to have a different button text.
That is, I want to have a button like
but I ...
8
votes
4answers
201 views
MVC philosophy applied to webforms
I'm pretty new to programming in general (really started only 2 1/2 years ago) and I'm trying to decide what the best way is to approach a web app I'm making at work.
A senior developer at work is ...