Tagged Questions

ASP.NET Web Forms is a part of the ASP.NET web application framework. It is one of several programming models one can use to create ASP.NET web applications.

learn more… | top users | synonyms

26
votes
9answers
16k views

Dropdownlist control with <optgroup>s for asp.net (webforms)?

Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups? Thanks
22
votes
10answers
902 views

What's the best way to present an e-mail address on my website without being attacked by spammers? [closed]

What's the best way to present an e-mail address on my website without being attacked by spammers? The approach foo at fooland dot com is not exactly what I'm looking for. I need to present it in a ...
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 ...
10
votes
5answers
328 views

Things that we hated about classic asp but still exist in webforms today

I'm working on a list of reasons for my team to move from webforms to MVC and I thought a good place to start was showing the "why we should migrate" with a set of things both classic asp and webforms ...
8
votes
5answers
234 views

What would be considered straight asp.net? (not mvc and not webforms)

I know the difference between ASP.NET webforms and ASP.NET MVC and I've seen quite a few videos explaining that they both run on top of ASP.NET (and I've used both). However, my question is, how ...
8
votes
4answers
269 views

Learn Asp.Net WebForms or Asp.Net MVC

It might be a dupe but I cannot find a straight answer. If a person is about to start learning web development over .Net framework, which technology should he go for ? Asp.Net WebForms Asp.Net MVC ...
7
votes
3answers
176 views

use web form master page as master page for ASP.Net MVC views programatically

We have a running solution contains many web forms application with the same master page, we created a class library project for master page and its controls and reference it as a dll inside each web ...
7
votes
3answers
121 views

Disposing a HtmlControl

On the advice of Code Analysis in VS to call Dispose on an object (which I wasn't previuosly) I ended up with a method containing this: using (var favicon = new HtmlLink { ...
7
votes
4answers
235 views

Learn MVC in a new project, or stick with WebForms?

I'm a front-end guy who's picked up ASP.NET WebForms through working on various projects at my agency. I have a project with a developer in mind, and I want to use/learn MVC for it - but he thinks it ...
7
votes
1answer
833 views

Windows authentication mode in ASP.NET uses the Active Directory group name (pre-Windows 2000)?

Here is the background. I had an .NET MVC v1.0 project that I was trying to secure it by using Windows authentication mode. So I set the web.config to: <authentication mode="Windows" /> And ...
6
votes
1answer
617 views

Asp.Net Web Forms and Asp.Net Web Pages

What is the difference between Asp.Net Web Forms and Asp.Net Web Pages? Here it says that Web Pages and Web Forms different approaches.
6
votes
2answers
119 views

How does IIS know if a request is webforms or MVC? (ASP.NET)

Short question: How does IIS know if a request is webforms or MVC?
6
votes
4answers
387 views

What's the best (easy&efficient) solution for asp.net developers to develop a mobile version of their existing website

I hope the question is self-describing. I'm currently developing an asp.net website which uses a MS SqlServer database in the data layer. And I was thinking what are my options to get a mobile ...
6
votes
3answers
5k views

LinkButton in ASP.NET MVC

I need to instantiate some ASP LinkButtons onto an ASP.NET MVC view page. I've tried a few things, and I cant get them to come out right. Heres my most recent incarnation of the code: the aspx file ...
5
votes
7answers
341 views

Any ASP.NET (WebForm) apps which have good unit tests (CodePlex or anywhere)?

I am looking for any ASP.NET (WebForms & C#) app which has some good unit tests in its solution. Good meaning testing different kinds of edge cases and does a good code coverage. Any app on ...
5
votes
2answers
114 views

Are ASP.Net Webforms and ASP.Net MVC component-based or action-based?

I come from a JavaEE background and I am investigating what web frameworks exist in Java and .Net. As far as Java is concerned, I have found this talk by Matt Raible. One of the categorizations he ...
5
votes
4answers
2k views

Can we use Razor syntax in ASP.NET Webforms (*.aspx pages)?

I'm liking the Razor syntax that Microsoft has developed for inline coding in their WebMatrix product (http://en.wikipedia.org/wiki/Microsoft_WebMatrix). Now that Visual Studio SP1 has RTM'd, is it ...
5
votes
3answers
224 views

Which pattern most closely matches scenario detailed and is it good practice?

I have seen a particular pattern a few times over the last few years. Please let me describe it. In the UI, each new record (e.g., new customers details) is stored on the form without saving to ...
5
votes
3answers
1k views

ASP.NET: Moving ViewState to bottom of page

What are the latest and greatest ways to move ViewState to bottom of the page Can this be done in a IHttpHandler that can be specified in the web.config to intercept requests to "*.aspx"? ...
5
votes
8answers
925 views

ASP.NET: Compress ViewState

What are the latest and greatest ways to compress the ASP.NET ViewState content? What about the performance of this? Is it worth it to keep the pages quick and minimize data-traffic? How can I make: ...
4
votes
2answers
245 views

What are the possibilities of displaying items in a listbox?

I've been trying to figure out for a long time now how to create an interface that can allows users to input several rows of data and pass those entries into an SQL server database all in one shot. I ...
4
votes
2answers
232 views

Turn off input validation for a single field

I've got an ASP.NET 4 site on which I want to allow people to put '<' in their password. However, .NET gets in the way by blocking (what it sees as) an attempt to put HTML in a form field. I know I ...
4
votes
1answer
434 views

Redirecting from ASP.NET WebForms to MVC

We have a large existing ASP.NET WebForms application, but we are now moving over to MVC. Rather than go through a painful process of trying to integrate MVC into the existing app, we're looking at ...
4
votes
2answers
874 views

Ninject.Web.PageBase still resulting in null reference to injected dependency

I have an ASP.NET 3.5 WebForms application using Ninject 2.0. However, attempting to use the Ninject.Web extension to provide injection into System.Web.UI.Page, I'm getting a null reference to my ...
4
votes
2answers
81 views

Is jquery worth a try with an asp.net webform application?

Hai guys, I ve been using javascript to get my validations,effects and so on... Now i ve decide to use jquery in one of my webform application Is jquery worth a try with an asp.net webform ...
3
votes
5answers
80 views

Creating dynamic UI in ASP.NET web forms

I need to create a survey page with the following structure read from database. Survey QuestionA a) Answer1 [Radio button] b) Answer2 [Radio button] c) Answer3 [Radio button] d) Answer4 [Radio ...
3
votes
3answers
40 views

How does <%$ %> and <%# %> work in ASP.NET?

I was using ASP.NET Web Forms and ASP.NET MVC for some period of time. So <%= %> in views mean Response.Write(), <%: %> introduced in MVC adds html escaping. In SqlDataSource control ...
3
votes
3answers
54 views

What is best place to store site specific string values (title, support info) etc

Sometimes I need to set some string values from code, for example: Page.Title = "This is a test page."; or lblSupportInfo.Text = "Please contact xxx-xxx-xxxx for support."; These are just ...
3
votes
1answer
50 views

Customizing session timeout per user - ASP.NET

Is there a way to customize the session timeout on a per user basis? It appears that we are going to have to override the web.config setting with a custom provider. Any thoughts on how to do this and ...
3
votes
3answers
79 views

Grabbing a control from an ascx page in ASP.Net

I have an .ascx user control that is in my search.aspx page. How do I grab a control from the .ascx user control in the search.aspx.cs code behind ? keywordSearch.Value = "value"; // the code behind ...
3
votes
1answer
222 views

Integrating/switching to MVC3 from WebForms with large existing library of custom controls

Here's the situation. We're adding a new application to our suite of webapps based on WebForms and so I felt this would be the perfect time to introduce MVC. I did all the research about ...
3
votes
1answer
96 views

Dynamically creating/loading a user control only works once!

protected void addMoreDay_btn_Click(object sender, EventArgs e) { Control OneMoreDay = LoadControl("~/controls/Days/DayAdd.ascx"); Days_div.Controls.Add(OneMoreDay); ...
3
votes
1answer
60 views

Ninject's NinjectHttpModule causing ASP.NET databound controls to lose data

In my ASP.NET WebForms (3.5) application, adding the NinjectHttpModule to the <httpModules> section in the web config causes repeaters and listviews to lose their databound items on postback. A ...
3
votes
2answers
106 views

Sharing authentication between new pages built in MVC and existing WebForms ASP.NET project

I'm working on a project that is built using Web Forms framework. We are trying to move to MVC by building all the new pages using MVC. Both types of pages are in same project. I'm curious to know ...
3
votes
2answers
222 views

Url.Content in asp.net web-forms

I'm trying to do this: <a href="~/Cases/SupRequestSearch.aspx">Search request</a> so I need the ~ to be rendered as http://myserver/app/... in mvc I would do <a ...
3
votes
4answers
260 views

ASP.NET Web Forms + jQuery

So, I have been programming with ASP.NET MVC with jQuery for quite some time and am very comfortable working with the DOM for AJAX and programming interactivity. However, I recently started a new job ...
3
votes
1answer
230 views

How to write a Class for retrieving IEnumerable Objects in EF and C#

I use c# asp.net 4 web forms and ef4. In my Code Behind I use several times this code below to bind and rebind (for refresh) e GridView after an insertion or other operations completed using EF ...
3
votes
6answers
200 views

Convince team to use patterns and practises

How can I convince a team to learn the following: ASP.NET MVC - they claim they have to write too much UI code. Unit Test - they claim they writing code twice. ORM (entity framework) - they see ...
3
votes
2answers
233 views

Speed of development - Asp.net vs Silverlight

I am trying to evaluate whether we should migrate from developing our product in ASP.net web forms (current technology) to Silverlight. I remember reading that silverlight development can add to ...
3
votes
5answers
960 views

N-tier architecture without using dataset (dataset sounds bad for the performance)

I read books, articles, tutorials and all that kind of stuff about the n-tier architecture and I'm trying to apply the famous 3-tier (DAL, BLL, PL) and I just got into the game, actually I've read a ...
3
votes
1answer
200 views

How to use ASP.Net MVC View inside WebForms .aspx page?

I have a large web application that I have set up as both ASP.Net Web Forms and MVC. Some of the newer pages are MVC (.mvc) and some are Web Forms (.aspx). Since this is a business app and functions ...
3
votes
1answer
322 views

Asp.net WebForms app that runs MVC in a subfolder

Let's say I have an Asp.net WebForms application that has: few *.aspx files in root folder that run as WebForms application (no routing involved) a subfolder ie FormsFolder that has other files and ...
3
votes
3answers
5k views

how to pass command argument while calling link button onclick function dynamically? (c#)

I have a function for which i am sharing a group of link buttons with. the function signature is like: protected void FunctionName(object sender, EventArgs e) { ... } Now I have about 4-5 link ...
3
votes
1answer
566 views

Accessing webmethod with jquery

I'm currently using jquery ajax to call a pagemethod (which works great); $.ajax({ type: "POST", url: "ArticleList.aspx/GetArticleTags", data: "{'articleId' : " + ...
3
votes
2answers
104 views

How can I make an ASP.NET MVC site as unit testable as an ASP.NET Web Forms site?

also, what day is today and why do I have an ugly unicorn as my avatar ;-)
3
votes
3answers
151 views

Why might ASP.NET be putting JavaScript in HTML Comment blocks, not CDATA?

We have an ASP.NET 2.0 WebForms app that uses MS Ajax 1.0. It's working fine on all our environments (dev, test, IE6 VMs etc.). However, at the customer site the client side validation is not ...
3
votes
2answers
121 views

Is there an equivalent of T4MVC for webforms?

I use T4MVC inside my asp mvc projects, mostly because it's brilliant. Is there an equivalent for asp webforms?
3
votes
7answers
171 views

asp.net webforms - is this a good way of persisting state?

This is a question about asp.net WebForms and sessionstate. I know this is probably a case where MVC is better, but I need to use WebForms. In my page's OnLoad event, I initalize an object and its ...
2
votes
4answers
64 views

Confused between Web Application and Web Forms

I just purchased a Twilio account and an 888 business number, and am now working to setup a very simple call system for my business. Everything from the examples is working fine, however I wish to ...
2
votes
2answers
79 views

Linq's DataContexts and “Unit of Work” pattern. Is my approach ok?

Following the directions from many articles, I've decided to implement the Unit of work pattern to my Linq2SQL DataContexts in my ASP.Net WebForms Application, but I'm not sure if I'm on the right ...

1 2 3 4 5 10