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

learn more… | top users | synonyms (1)

2
votes
1answer
33 views

Can you encrypt entire web.config file with aspnet_regiis?

I know you can encrypt appSettings and connectionStrings and other individual sections in web.configs using aspnet_regiis, but how does one encrypt an entire web.config? I have a client requesting ...
1
vote
2answers
25 views

Using ConfigurationManager in web apps

As far as I understand, I should use System.Configuration.ConfigurationManager to read app settings in desktop applications, and System.Web.Configuration.WebConfigurationManager to do the same thing ...
0
votes
1answer
17 views

exePath must be specified when not running inside a stand alone exe

When i am using a web application, the line of code below Configuration objConfig = ConfigurationManager.OpenExeConfiguration( ConfigurationUserLevel.None); in class library are giving this ...
0
votes
1answer
21 views

From Visual Studio 2010 to Visual Studio 2012 (MVC 3 To MVC 4)

Phase1 project is a webapplication developed in visual studio 2010 using Asp.net MVC3. Now I want to continue my next phase with Asp.net MVC4 also shift the project in visualstudio 2012. What are the ...
4
votes
2answers
105 views

system.web.compilation.debug vs. system.codedom.compilers.compiler.compilerOptions /define:Debug=True

When I deploy my ASP.NET web app to production, I use a config transform to remove debug="true" from <compilation>. However, just today I noticed another section in the web.config that looks ...
0
votes
0answers
5 views

the name clientresponse does not exist in current context

I'm implementing OpenID in mvc3 razor code,(i use nerddinner openid example in razor) I use dotnetopenauth , I get this in authcontroller. I use Assembly DotNetOpenAuth.dll, v2.0.50727 This is my ...
0
votes
2answers
1k views

Web.config transformations in ASP.NET MVC 2 and extra Web.config files

i'm trying to use the Web.config transformations in my ASP.NET MVC 2 project running on .NET 4. However, I am having a problem: // Root Web.config <add name="MyDB" ...
5
votes
2answers
3k views

Publish is not transforming web.config?

I made a web.config (full file, it doesn't show XML errors) <?xml version="1.0"?> <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <configSections> ...
0
votes
0answers
13 views

Rewriting urls with web.config file?

I need to write a web.config file that redirects urls like they are specified in this .htaccess file. I am deploying to multiple sites so this needs to work when the site is based both at root and in ...
0
votes
0answers
25 views

Webservices do not work on server

Since the last time I hosted website(VS 2010) on IIS 7, none of the webservices work. My project has many webservices in different forms and none seems to work. When I invoked directly,entering URL in ...
0
votes
1answer
15 views

'&' in password illegal character in web.config file

I have a web.config file, in connection string attribute, I have an '&' in password which creates error in parsing web.config file. code: <connectionStrings> <clear/> ...
0
votes
2answers
50 views

Writing a connection string to access a remote SQL Server database

My database is hosted on a remote server. I need to write the connection string which I have to include in the web.config file. server name -- abcs.efgh.ed-1.eee.sss.com,1433 (it also contains a port ...
1
vote
0answers
16 views

How to get 2 domain canonical redirect in web.config to work

I have an Umbraco CMS that is hosting 2 web sites with different domains. I need to perform canonical redirects for each using the iis rewrite from the web.config. Example: mydomain1.com -> ...
2
votes
2answers
478 views

Azure website cannot access Azure DB

This error drives me crazy and I can't even reproduce it! I've published my website to Windows Azure and SQL Azure and it worked great. All the sudden and it doesn't work, I get this nasty error: ...
0
votes
1answer
16 views

How to allow special chars in form for a specific page?

I saw a lot of similar questions here, but no answer worked for me. I have a site (MVC4) with a search function, the search function should accept any character, but only the search form, the rest of ...
3
votes
1answer
176 views

How can I get the current Trace Switch programatically?

In my web.config I have: <system.diagnostics> <switches> <add name="logLevelSwitch" value="1" /> </switches> </system.diagnostics> Is there a way that I could ...
1
vote
1answer
22 views

what is the best way to upgrade web.config?

I have a web application to which I wrote an upgrade utility. It rewrites the binaries and updates the web.config (with new sections, changed attributes, elements etc..). I want to preserve my ...
2
votes
1answer
39 views

URL Rewrite Regular Expression to suit all

Brief Explanation I am trying to come up with a smart way of controlling my web page rewrites with as few rewrites as possible. So, for example, if you have the following page translations: ...
2
votes
0answers
55 views

Entity Framework setup issue

When I run my code using (foodEntities db_Linq = new foodEntities()) { return db_Linq.Database.Exists(); //return db_Linq.Foods.Any(); } I keep getting this error in the output window. ...
1
vote
1answer
557 views

asp.net 4.0 chart control

I have some weird problem with my asp.net charting control. Everything is working fine on my locale machine but when I load my project to my website host, sometimes the images appear and sometimes ...
0
votes
0answers
17 views

Web.config conflicting code hide file extension and custom 404

I'm just about finished building this website for a client of mine. All along I've been running a script inside the web.config file which hides the .php file extensions from the end of the web ...
3
votes
1answer
125 views

Web Config Transforms: Insert If Not Exists

I would like to apply a transformation if and only if a matched element does not exist in the target. Trying various xpath expressions using http://webconfigtransformationtester.apphb.com/ but no luck ...
1
vote
0answers
11 views

Add config transform for WebSite

We do have lots of legacy sites which are built with WebSite option in visual studio rather than project. What I am trying to do now is, using TeamCity and Octopus to streamline our deployment ...
0
votes
0answers
8 views

Allow runAllManagedModulesForAllRequests for one controller

I need to turn on runAllManagedModulesForAllRequests for a particular MVC controller that expects a filename as its parameter (i.e. http://server/api/file/00_08112010MC41670.txt), but I don't want to ...
-1
votes
0answers
6 views

How can I debug using transformed config

Quick Question: Can I debug using Release.config? I have applied Transform plugin for VS2010
0
votes
0answers
7 views

Using Login Page of Other Project Withing Same Web Solution

I have created a solution and it contains two different project: Web Solution - Project A - Project B I have added reference of Project B to Project A. Now, is there a way that I can pass ...
0
votes
1answer
22 views

Website logout time issue

My website automatically logout after 15 mins . I want to set the timeout in two hours or one day . See below my Webconfig code <authentication mode="Forms"> <forms ...
0
votes
0answers
3 views

Removing all bindingConfiguration properties when transforming web.config

I'm working on transforming a standard web.config (.NET 4, VS2010). In the development environment we have a bunch of bindings, which are referred to by the endpoints. In the production environment we ...
0
votes
1answer
41 views

Split 'appSettings' section in several web.config files

I'm working on a ASP.NET project and I need to add some settings in appSettings section of my web-app. Now these settings are growing up, so I'd like to organize them in different files. I've created ...
1
vote
1answer
43 views

what is the difference between \ and \\ in file path

What is the difference between single slash and double slash in file path for Windows operating system such as c:\Personal\MyFolder\\MyFile.jpg and c:\Personal\MyFolder\MyFile.jpg What if i use ...
0
votes
0answers
24 views

SQL Server CE error when publishing to web server

I created a website with Microsoft WebMatrix 2 and Razor with a SQL Server CE database, it is my first web site with this type of technology, I was intermediate PHP programmer. Everything works great ...
0
votes
1answer
31 views

Configuring a Java HTTP servlet in Netbeans 7.3

I've recently upgraded to Netbeans 7.3, and I quite don't get much of its project configuration and interface. For example, once I used to see the source packages with java classes, now I'm not able ...
1
vote
1answer
310 views

How to log Application Errors when customErros is set to On?

I have setup an MVC application to log errors with log4net. In my global.asax I catch Application errors using the Application_Error method (s_log is my logging manager which is a wrapper around ...
-3
votes
0answers
18 views

I am attempting to create a batch script to update multiple web.config files [closed]

I am attempting to create a batch script to update multiple web.config files (117) to be exact. There is a value that I would like to add. This would then become our maintenance script to update the ...
0
votes
0answers
46 views

Access both web.config and app.config from a single class

I need to read data from both app.config and web.config. My class will have read/write/update methods wrapped in a dll which will be used both by an application (exe) and by a web application. I need ...
2
votes
0answers
23 views

asp.net Attempting to create publish settings in vs 2012 gives strange error

I recently updated my asp.net 3.5 web project from Visual Studio 2010 to Visual Studio 2012. Every time I try to create publish settings it says the following: {There are errors in web.config. ...
1
vote
3answers
111 views

Web.config error with <authorization> node

When I add <authorization> it displays the page but without the css. Anyone has an idea why?? Here is my web.config <?xml version="1.0"?> <configuration> ...
1
vote
0answers
11 views

disable auto-generated error pages iisexpress

I'm creating a JSON web api. Certain parts of the api are limited to authenticated users only. If you're not authenticated, the server is programmed to set the http status code to 403 and close the ...
0
votes
0answers
20 views

web.config not accepting url queries

Below is an example of the code in the web.config document. This method works just fine, but it's only to show that we have it working. We are running IIS 7.5 and MS Windows Web Server 6.1. ...
0
votes
2answers
3k views

System.Configuration.ConfigurationManager.AppSettings

I use System.Configuration.ConfigurationManager.AppSettings["key1"] in settings.designer.cs file it's working fine in the development but after i moved all the .dll files into production it is not ...
0
votes
1answer
23 views

WCF service wasn't generated the web-config configurations

I have a simple WCF service and i would try to add a service reference for my console application it has worked fine and automatically generate the web-config configurations. ...
0
votes
1answer
211 views

Connection String argument cannot be null or empty

I'm working with MojoPortal attempting to add some additional modules and services I need for an application. This particular part of the system is fairly isolated from MojoPortal. I've created a ...
63
votes
7answers
35k views

Login failed for user 'IIS APPPOOL\ASP.NET v4.0'

I have a web project (c# asp.net, EF 4 and MS SQL 2008 & IIS 7) I need to move my website (that was working with no problem in CASSINI) to IIS 7 locally. So locally in IIS I have my Default Web ...
0
votes
1answer
26 views

WCF Service not working from Visual Studio due to SSL

I've recently added HTTPS to my WCF service, which is working correctly on my development IIS server, for both HTTP and HTTPS. However, now when I try to run using Visual Studio (localhost), I'm ...
0
votes
0answers
16 views

What's the difference between configuration/assemblyBinding and the configuration/runtime/assemblyBinding elements

In .NET framework configuration, there are 2 assemblyBinding elements: one can be directly under the configuration element, the other is under configuration/runtime. The documentation for the second ...
0
votes
2answers
31 views

Web.Config to block entire website

I have a login system in place at the moment to stop all non-authenticated users from viewing the content of my website. I can confirm the login works. The problem I am facing now however is with my ...
0
votes
2answers
45 views

read WCF service endpoint address by name from web.config

Here I am trying to read my service endpoint address by name from web.config ClientSection clientSection = (ClientSection)ConfigurationManager.GetSection("system.serviceModel/client"); var el = ...
0
votes
2answers
62 views

Maximum request length exceeded iis 7

I appreciate this has been asked numerous times before, but i cannot seem to get this working. I have the following values in my config file: <httpRuntime maxRequestLength="16384" ...
0
votes
0answers
10 views

Porting .htaccess (APACHE) to web.config (ISS)

I need to move a web Project from an Linux Apache Webserver to an Microsoft ISS Webserver. The System uses .htaccess MOD_REWRITE. Can someone help my by converting an .htaccess to an web.config file? ...
0
votes
1answer
26 views

301 Redirect Rule is not working when I use full URL

I have a rule in my web.config on asp.net 4.5 and iis 7.5 <rule name="baad4041-5e25-499f-abb7-6bd4f76b2ed3" stopProcessing="true"> <match url="http://www.domain.com/ThisIsOld.html" /> ...

1 2 3 4 5 79