Tagged Questions

291
votes
53answers
20k views

Hidden Features of ASP.NET

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar ...
237
votes
14answers
25k views

ASP.NET: Web Site or Web Application?

When I start a new ASP.NET project in Visual Studio 2008, I can either create a new ASP.NET Web Site or an ASP.NET Web Application. What's the difference between these two project types? Why would I ...
153
votes
10answers
18k views

Logging best practices

I'd like to get stories on how people are handling tracing and logging in real applications. Here are some questions that might help to explain your answer. Frameworks What frameworks do you use? ...
141
votes
34answers
40k views

What is the best logging solution for a C# .NET 3.5 project? [closed]

My team is about to start a new enterprise wide ASP.NET development project, quite possibly the largest undertaken by my department so far and the largest project that I've ever worked on. I'm looking ...
129
votes
12answers
4k views

How serious is this new ASP.NET security vulnerability and how can I workaround it?

I've just read on the net about a newly discovered security vulnerability in ASP.NET. You can read the details here. The problem lies in the way that ASP.NET implements the AES encryption ...
129
votes
22answers
27k views

Best Free Controls for .NET [closed]

What Free Controls are there for .NET (both Winforms and Webforms)?
126
votes
12answers
18k views

Path.Combine for Urls?

Path.Combine is handy, but is there a similar function in the .NET framework for Urls? I'm looking for syntax like this: Url.Combine("Http://MyUrl.com/", "/Images/Image.jpg") which would return: ...
82
votes
7answers
6k views

How can I take more control in ASP.NET?

I'm trying to build a very, very simple "micro-webapp" which I suspect will be of interest to a few Stack Overflow'rs if I ever get it done. I'm hosting it on my C# in Depth site, which is vanilla ...
82
votes
13answers
35k views

.NET Configuration (app.config/web.config/settings.settings)

I have a .NET application which has different configuration files for Debug and Release builds. E.g. the debug app.config file points to a development SQL Server which has debugging enabled and the ...
65
votes
9answers
17k views

Passing data to Master Page in ASP.NET MVC

What is your way of passing data to Master Page (using ASP.NET MVC) without breaking MVC rules? Personally, I prefer to code abstract controller (base controller) or base class which is passed to all ...
49
votes
9answers
6k views

Using scripts in a master page with ASP.NET MVC

I'm fairly new to ASP.NET MVC, and I'm having a little trouble with scripts... in particular, I want to use jQuery in most pages, so it makes sense to put it in the master page. However, if I do (from ...
47
votes
5answers
28k views

WCF - How to Increase Message Size Quota

I have a WCF Service which returns 1000 records from database to the client. I have a ASP.NET WCF client - (I have added service reference in asp.net web application project to consume WCF). I get the ...
47
votes
6answers
14k views

New asp.net charting controls - will they work with MVC (eventually)?

Scott Gu just posted about a new set of charting controls being distributed by the .NET team. They look incredible: ...
45
votes
6answers
3k views

How to use the repository pattern correctly?

I am wondering how should I be grouping my repositories? Like from the examples I seen on the asp.net mvc and in my books they basically use one repository per database table. But that seems like a ...
45
votes
10answers
14k views

Erratic Invalid Viewstate issue in a .NET application

I seem to be getting a "invalid viewstate" every now and then in the event viewer for my ASP.NET application. Most of them (95%) seem to be referencing ScriptResource.axd (the application uses the ...
43
votes
9answers
10k views

Is Response.End() considered harmful?

This KB Article says that ASP.NET's Response.End() aborts a thread. Reflector shows that it looks like this: public void End() { if (this._context.IsInCancellablePeriod) { ...
43
votes
22answers
6k views

Should I migrate to ASP.NET MVC?

I just listened to the StackOverflow team's 17th podcast, and they talked so highly of ASP.NET MVC that I decided to check it out. But first, I want to be sure it's worth it. I already created a base ...
43
votes
10answers
4k views

How do I sync the SVN revision number with my ASP.NET web site?

Stack Overflow has a subversion version number at the bottom: "svn revision: 679" I want to use such automatic versioning with my .NET web, win forms, wpf projects/solutions. How do I implement this? ...
39
votes
30answers
85k views

Invalid postback or callback argument. Event validation is enabled using '<pages enableEventValidation=“true”/>'

I am getting the following error when I post back a page from the client-side. I have JavaScript code that modifies an asp:ListBox on the client side. How do we fix this? Error details below: ...
38
votes
12answers
3k views

What's the significance of Oct 12 1999?

In the SignOut method of System.Web.Security.FormsAuthentication, the ASP.NET team chose to expire the FormsAuth cookie by setting the expiration date to "Oct 12 1999". HttpCookie cookie = new ...
38
votes
4answers
20k views

In ASP.NET, when should I use Session.Clear() rather than Session.Abandon()?

Both Session.Clear() and Session.Abandon() get rid of session variables. As I understand it, Abandon() ends the current session, and causes a new session to be created thus causing the End and Start ...
37
votes
2answers
736 views

AppFabric doesn’t recover well from restart

Alright, I’ve successfully deployed AppFabric, and everything was working nicely until we started getting an intermittent exception on the website: ErrorCode < ERRCA0017 >:SubStatus < ...
37
votes
5answers
5k views

Securing Elmah in ASP.NET website

I am having trouble trying to secure ELMAH. I have followed Phil Haacked's tutorial, with the only difference being the demo project is a web application and my project is a website. <add ...
37
votes
20answers
18k views

.NET Usercontrols telerik devexpress infragistics ComponentOne: who's best?

I am considering the purchase of some .NET user controls with interest in both WinForms and asp.net. I have trialed in the past devexpress when I needed a hierarchical data grid for a personal project ...
34
votes
18answers
29k views

How do you bind an Enum to a DropDownList control in ASP.NET?

Let's say I have the following simple enum: enum Response { Yes = 1, No = 2, Maybe = 3 } How can I bind this enum to a DropDownList control so that the descriptions are displayed in the ...
33
votes
13answers
40k views

What is the difference between Public, Private, Protected, and Nothing?

All my college years I have been using public, and would like to know the difference between public, private, and protected? Also what does static do as opposed to having nothing?
29
votes
4answers
4k views

ASP.NET MVC Razor render without encoding

Razor encodes string by default. Is there any special syntax for rendering without encoding?
27
votes
9answers
5k views

Managing complex Web.Config files between deployment environments

Does anyone know of any good tools/utilities for managing Web.Config files between different build/deployment environments? For example, I have a WCF project that in development I don't want to ...
26
votes
5answers
4k views

ASP.NET and Entity Framework in Layered Architecture - using Entity Framework for ORM only

I have an ASP.NET application that uses a layered architecture e.g. presentation layer, business logic layer, data access layer. I don't want to the business layer to have to know anything about how ...
26
votes
6answers
4k views

Best Continuous Integration Setup for a solo developer (.NET)

I'm looking for a lightweight, easy to setup CI server that I can run on my laptop along with Visual Studio & Resharper. I'm obviously looking at all the big names like CruiseControl, TeamCity etc ...
26
votes
6answers
4k views

Debug VS Release in .net

Continuation to my previous question is any one aware of a comprehensive document what list all available differences between debug and release modes in C# application , and particularly in web ...
26
votes
6answers
9k views

What is the best way to lock cache in asp.net?

I know in certain circumstances, such as long running processes, it is important to lock ASP.NET cache in order to avoid subsequent requests by another user for that resource from executing the long ...
26
votes
3answers
5k views

Send email from Elmah?

Is anyone using Elmah to send exceptions via email? I've got Elmah logging set up via SQL Server, and can view the errors page via the Elmah.axd page, but I am unable to get the email component ...
25
votes
7answers
13k views

Building a CMS in ASP.NET MVC

I'm curious to know if any basic CMS code has been written for ASP.NET MVC. The reason I ask is, I'm making a data-driven website for a client, and I've already spent a significant amount of time ...
24
votes
6answers
3k views

Castle Windsor Are There Any Downsides?

I have been looking into the castle project and specifically windsor. I have been so impressed with what is possible with this technology and the benefits of having a such a loosely coupled system are ...
24
votes
13answers
10k views

Connection string hell in .NET / LINQ-SQL / ASP.NET

I have a web application that comprises the following: A web project (with a web.config file containing a connection string - but no data access code in the web project) A data access project that ...
23
votes
5answers
1k views

Line of business applications: Will F# make my life easy?

I develop mainly line of business applications.No scientific operations. No complex calculations. Just tie User Interface to database. The only reason I use threading is to do some work in background ...
23
votes
7answers
31k views

Can I develop for .NET Framework 4 in Visual Studio 2008?

My ASP.NET application runs in IIS on my web server and uses Microsoft .NET Framework 4 Beta 2. (Its Application Pool is set to .NET Framework version .NET Framework v4.0.21006.) It gives this new ...
23
votes
9answers
11k views

Use CouchDB with .NET

Can .NET (managed code) read and write to CouchDB? I would like to build a part of my project that does document management using CouchDB
23
votes
7answers
32k views

What causing this “Invalid length for a Base-64 char array”

I have very little to go on here. I cant reproduce this locally, but when users get the error I get an auto email exception notification. Message: Invalid length for a Base-64 char array. Call ...
23
votes
13answers
32k views

GridView sorting: SortDirection always Ascending

I have a gridview and I need to sort its elements when the user clicks on the header. Its datasource is a List object. The aspx is defined this way : <asp:GridView ID="grdHeader" ...
23
votes
16answers
5k views

Which Facebook .NET Library is the best to use?

There is a list of projects here, mainly the Facebook Developer Toolkit and Facebook.NET. However, I've seen a lot of negative feedback about the toolkit and it seems like Facebook.NET hasn't been ...
23
votes
12answers
2k views

What are your experiences with Windows Workflow Foundation?

I am evaluating WF for use in line of business applications on the web, and I would love to hear some recent first-hand accounts of this technology. My main interest here is in improving the ...
22
votes
6answers
20k views

Good tutorial for ASP.net mvc 2

I am an experienced asp.net web forms developer using c# but i have never used asp.net MVC. As I am just starting out with mvc i would like to start with mvc 2. I am looking for a good ...
22
votes
4answers
992 views

Compelling Reasons to Use Marker Interfaces Instead of Attributes

It's been discussed before on Stack Overflow that we should prefer attributes to marker interfaces (interfaces without any members). Interface Design article on MSDN asserts this recommendation too: ...
22
votes
11answers
2k views

What are people using JScript.Net for?

I'm interested to know who uses JScript.Net and for what sort of applications. Whenever I'm reading MSDN .Net documentation, I always notice the JScript samples but in all the years I've been a C# dev ...
22
votes
3answers
7k views

How can I get my webapp's base URL in ASP.NET MVC?

How can I quickly determine what the root URL is for my ASP.NET MVC application? I.e., if IIS is set to serve my application at http://example.com/foo/bar, then I'd like to be able to get that URL in ...
22
votes
7answers
10k views

Has an event handler already been added?

Is there a way to tell if an event handler has been added to an object? I'm serializing a list of objects into/out of session state so we can use SQL based session state... When an object in the list ...
21
votes
15answers
1k views

How to know who kills my threads

I got a thread that is just banishing.. i'd like to know who is killing my thread and why. It occurs to me my thread is being killed by the OS, but i'd like to confirm this and if possible to ...
21
votes
7answers
10k views

What is the App_Data folder used for in Visual Studio?

When creating a new ASP.NET application in Visual Studio, a couple of files and folders are created automatically. One of those folders is called App_Data. Also when publishing a website by selecting ...

1 2 3 4 5 173