Tagged Questions

Web.config is the main settings and configuration file for an ASP.NET web application.

learn more… | top users | synonyms (1)

39
votes
10answers
12k views

Using different Web.config in development and production environment

I need to use different database connection string and SMTP server address in my ASP.NET application depending on it is run in development or production environment. The application reads settings ...
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 ...
36
votes
3answers
7k views

What's the difference between <system.web> and <system.webServer>?

Every time I have to add a handler or module for ASP.NET w/ IIS7, the instructions always tell me to put it into two places, the system.web and system.webserver. <system.web> ...
32
votes
2answers
11k views

What are the Web.Debug.config and Web.Release.Config files for?

I just upgraded to Visual Studio 2010 and MVC 2.0 and I noticed the Web.config has two additional files attached to it? Are these files used to specify debug and release specific settings, so you ...
23
votes
11answers
22k views

Variables within app.config/web.config

Is it is possible to do something like the following in the app.config or web.config files? <appSettings> <add key="MyBaseDir" value="C:\MyBase" /> <add key="Dir1" ...
22
votes
5answers
5k views

Use Visual Studio web.config transform for debugging

I want to use the web.config transformation that works fine for publish also for debugging. When i publish a web app, visual studio automatically transforms the web.config based on my currenc build ...
22
votes
15answers
2k views

How to stop Visual Studio adding assemblies to my web.config?

Every time i build, or publish, a web-site, Visual Studio attempts to check out the web.config file so that it can add numerous assemblies that are not required. In other words: web.config before: ...
19
votes
1answer
894 views

Make Debug/Release Build Configuration with 1 Click Publish dependent on the selected Publish Profile

This is almost a duplicate of Link build configuration to a publish profile, but that question was not answered... I have 2 1 Click Publish configurations for my Web Application: Test Server ...
17
votes
1answer
9k views

ASP.NET MVC and two Web.config files

Where is the Web.config supposed to go in an ASP.NET MVC project? I just ran into an error trying to do this: _cnstr = System.Configuration.ConfigurationManager. ...
16
votes
4answers
4k views

Programmatically register HttpModules at runtime

I'm writing an app where 3rd party vendors can write plugin DLLs and drop them into the web app's bin directory. I want the ability for these plugins to be able to register their own HttpModules if ...
15
votes
1answer
5k views

IIS Manager can't configure .NET Compilation on .NET 4 Applications

i tried to configure the .NET Compilation Settings in the IIS Manager but all i see is an Error Message that tells me that there is an unrecognized element in the web.config file in ...
15
votes
1answer
2k views

What is the difference between customErrors and httpErrors?

What is the difference between the customErrors and httpErrors sections of the web.config file in ASP.NET MVC applications? What are the guidelines for using each section? Thanks. Alan T
14
votes
3answers
17k views

Avoid web.config inheritance in child web application using inheritInChildApplications

I am trying to add <location inheritInChildApplications="false"> to my parent web application's web.config but it doesn't seem to be working. My parent's web.config has: ...
14
votes
5answers
5k views

debug=true in web.config = BAD thing?

We're seeing lots of virtual memory fragmentation and out of memory errors and then it hits the 3GB limit. The compilation debug is set to true in the web.config but I get different answers from ...
14
votes
3answers
4k views

Open web.config from console application?

I have a console capplication that runs on the same computer that hosts a bunch of web.config files. I need the console application to open each web.config file and decrypt the connection string and ...
14
votes
3answers
7k views

How can I add an ampersand for a value in a ASP.net/C# app config file value

I've got a C# program with values in a config file. What I want is to store ampersands for an url value like... <appSettings> <add key="myurl" ...
13
votes
1answer
763 views

Why are some Web.config transforms tokenised into SetParameters.xml and others are not?

I've been using config transforms in VS2010 quite a bit lately but am confused as to why some transforms are applied directly to the Web.config in the package but others are stored against a token in ...
13
votes
4answers
2k views

ReplacableToken_ when using web.config transform?

I have a web.config with 2 transforms - for debug and release. web.config: <connectionStrings> <clear /> <add name="StrName" connectionString="data source=.\sqlexpress;User ...
13
votes
10answers
23k views

Web Application Problems (web.config errors) HTTP 500.19 with IIS7.5 and ASP.NET v2

This is driving the whole team crazy. There must be some simple mis-configured part of IIS or our Web Server, but every time we try to run out ASP.NET Web Application on IIS 7.5 we get the following ...
13
votes
6answers
2k views

Differentiating web.config between dev, staging and production environments

Anyone have any good tips on handling differences in web.config settings between environments? I've considered creating a 'config' folder in our source control system but outside of the web hierarchy, ...
13
votes
5answers
10k views

How do you modify the web.config appSettings at runtime?

I am confused on how to modify the web.config appSettings values at runtime. For example, I have this appSettings section: <appSettings> <add key="productspagedesc" value="TODO: Edit this ...
13
votes
5answers
5k views

How do I store a dictionary object in my web.config file?

I'd like to store a simple key/value string dictionary in my web config file. Visual Studio makes it easy to store a string collection(see sample below) but I'm not sure how to do it with a ...
13
votes
2answers
3k views

What's the difference between a worker thread and an I/O thread?

Looking at the processmodel element in the Web.Config there are two attributes. maxWorkerThreads="25" maxIoThreads="25" What is the difference between worker threads and I/O threads?
12
votes
1answer
2k views

Advanced tasks using Web.Config transformation

Does anyone know if there is a way to "transform" specific sections of values instead of replacing the whole value or an attribute? For example, I've got several appSettings entries that specify the ...
12
votes
3answers
2k views

Can you pull the connectionString for a log4net AdoNetAppender from elsewhere in a web.config file?

Hey all. This is my first StackOverflow question. I'm already have a db connection string in my web.config file. I scanned the log4net docs, but can't seem to find a way to use it within the ...
11
votes
4answers
225 views

Performance and security of ASP.NET MVC app - handler mappings and modules

i just have read an interesting article. Basically it says, you should fine-tune IIS settings for every application in 2 ways: handler mappings - remove all unused by application modules - remove ...
11
votes
2answers
6k views

How to configure static content cache per folder and extension in IIS7?

I would like to set up rules in IIS7 for static content caching in my ASP.NET website. I have seen these articles, which details how to do it using the <clientCache /> element in web.config: ...
11
votes
2answers
2k views

Restrict access to a specific controller by IP address in ASP.NET MVC Beta

I have an ASP.NET MVC project containing an AdminController class - giving me URls like http://myserver/admin/AddCustomer, http://myserver/Admin/ListCustomers, etc. I want to configure the server/app ...
11
votes
9answers
11k views

log4net with ASP.NET 3.5 problems

I'm having some trouble getting log4net to work from ASP.NET 3.5. This is the first time I've tried to use log4net, I feel like I'm missing a piece of the puzzle. My project references the log4net ...
11
votes
11answers
12k views

Log4Net “Could not find schema information” messages

I decided to use log4net as a logger for a new webservice project. Everything is working fine, but I get a lot of messages like the one below, for every log4net tag I am using in my web.config: ...
10
votes
2answers
368 views

Removing .aspx from pages using rewriteModule?

I'm using ASP .NET rewriteModule to rewrite http://example.com to http://www.example.com. <section name="rewriteModule" type="RewriteModule.RewriteModuleSectionHandler, RewriteModule"/> Then ...
10
votes
2answers
2k views

VS 2010 Web.config transformations for debugging

I’m a fan of the new VS 2010 Web.config transformations. I use this feature for deployment purposes and wondered if it is possible to use them for debugging too. I think of using them in the IDE: I ...
10
votes
3answers
580 views

Why do I randomly get a “error to use section registered as allowDefinition='MachineToApplication'” when building an MVC project?

I have seen a few questions on SO about a similar error when deploying a website, but I seem to randomly get this error when building an ASP.NET MVC website in Visual Studio. Performing a clean ...
10
votes
5answers
760 views

Rewriting URLs in ASP.NET?

I am using ASP.NET C#. How do I implement URL re-writing procedure that is similar to StackOverflow.com? http://stackoverflow.com/questions/358630/how-to-search-date-in-sql Also, what is the ...
10
votes
1answer
1k views

How can setup a friendly email name in the MailSetting section of web.config?

Currently I have: <system.net> <mailSettings> <smtp from="me@mydomain.com"> <network host="localhost" port="25" /> ...
9
votes
2answers
140 views

Multiple developers using single web.config with different settings

I'm creating an ASP.Net MVC web app. There are multiple developers on the team that need to have different settings in the web.config file. These settings are for the database connection and a local ...
9
votes
2answers
768 views

Which gets priority? maxRequestLength or maxAllowedContentLength?

While changing the maximum allowed file size for upload I stumbled on those two settings. In the sytem.web you have the http runtime node with maxRequestLength. In the system.webServer you have the ...
9
votes
6answers
13k views

Problem when trying to configure enterprise library 5.0 (Data Access Application Block)

Hi There Stackoverflow, I am running into some problems while trying to get DAAB from Enterprise library 5.0 running. I have followed the steps as per the tutorial, but am getting errors... 1) ...
9
votes
4answers
9k views

Set Default Page in Asp.net

Is there any section or code which allows us to set default page in web.config ? For example, when people first visit my website, I want them to see CreateThing.aspx rather than Default.aspx. The ...
9
votes
2answers
2k views

Storing Smtp from email friendly display name in Web.Config

I'm storing my mailsettings in the web config like so... <mailSettings> <smtp from="splidge@findremovalcompanies.com"> <network host="smtp.findremovalcompanies.com" ...
9
votes
3answers
2k views

Enabling Intellisense for Custom Sections in .config Files

When editing .NET config files (app.config, web.config, etc) in Visual Studio, I get Visual Studio's intellisense to guide me when choosing my application's settings. If I add a custom configuration ...
9
votes
8answers
7k views

How do I call Initialize on a custom MembershipProvider?

I have read through all the related questions, but I still unable to get the right solution for some reason, something is not right on my side, but not sure what's causing it. I have created a Custom ...
8
votes
3answers
331 views

Should I use 'Integrated Security=True' in a production environment?

Is it a bad practice to use Integrated Security=True on a production server in ASP.NET?
8
votes
3answers
1k views

How to stop inheritance of <configSections>in Web.Config

You simply cannot use <location path="." inheritInChildApplications="false"> in certain parts of your web.config in order to tell it to ignore inheritance of certain sections (you'll get errors ...
8
votes
2answers
805 views

Securing ELMAH while yet making it possible to access it via RSS Reader

We use ELMAH error exception logging in our application. I'd like to keep ELMAH secure from regular users while still making it available to administrators/developers of the application. When you ...
8
votes
2answers
4k views

How to get NLog to write to database

I'm trying to get NLog to log to my database log table but to no avail. I'm sure my connection string is correct because it's the same used elsewhere in my web.config. Writing out to a file works ...
8
votes
3answers
4k views

Translating an Apache .htaccess file to an IIS web.config

I developed an application on my local using PHP, MySQL and Apache and it has a .htaccess file containing this: #Setting the default handler. DirectoryIndex home.do <IfModule mod_mime.c> ...
8
votes
3answers
7k views

asp.net, url rewrite module and web.config

i'm using ASP.net with .NET 3.5 on IIS7 (Vista) with the URL Rewrite Module from Microsoft. This means, that i have a <system.webServer> <rewrite>...</rewrite> ... ...
8
votes
4answers
442 views

Where is the official, extensive, complete documentation on web.config?

I'm trying to find about ALL the possible options that I can set in web.config. Surprisingly, I can't find this at all (i'm expecting it to be somewhere inside msdn.microsoft.com) I know I can ...
7
votes
4answers
5k views

allowDefinition='MachineToApplication' msbuild error

We have a ASP.NET MVC with 4-5 different build configurations. Whenever we change the build configuration, we need to delete the obj folder for the web project, since we get the ...

1 2 3 4 5 45