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)

0
votes
0answers
4 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 ...
1
vote
1answer
22 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: ...
1
vote
0answers
6 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
5 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
6 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
0answers
2 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
20 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
1answer
24 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 ...
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 ...
-3
votes
0answers
17 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
22 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
0answers
10 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
19 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
1answer
19 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
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
1answer
22 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
2answers
35 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
0answers
9 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
2answers
56 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
2answers
29 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
1answer
20 views

.htaccess to web.config php issue

I've been hitting these boards and I'm not really finding a solution. My students redesigned a website for a non-profit rescue group and honestly, programming is not my forte, as much as coding is. ...
0
votes
1answer
47 views

Need expert advice for WCF Service programming

!--- I'm sorry if this post is redundant with some others, but the problem with my project seems to be resulting of my architecture, so I need general help. ---! I'm trying to configure a WCF Service ...
0
votes
2answers
37 views

IIS WCF Config: service only uses default behavior

I am learning about WCF deployment in IIS and I have found something strange. Basically my service only uses the default behavior regardless of how I set the behaviorConfiguration attribute of ...
0
votes
1answer
25 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" /> ...
0
votes
1answer
37 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 ...
0
votes
0answers
6 views

Linking configs in multiple .Net projects

I´m trying to link config files in a solution with no success, I have multiple projects, an MVC and a lot of Class Libraries. Each Class Library has a app.config with key/value settings. I want to ...
-1
votes
1answer
16 views

Different Web.Config Files For each User on TFS

I'am able to configure different web.config files (debug & release) on TFS. Is it possible to configure web.config files for each user separately? my objective is to include personal connection ...
0
votes
1answer
18 views

Dividing entity framework connection string into 2 parts

I'm trying to set up continuous integration for legacy project. In Web.config, there's Entity Framework connection string: <add name="StuffContext" connectionString=" ...
0
votes
1answer
32 views

Umbraco: Deny public access for media files of content

I'm working with Umbraco 4.11.8. For my website I have a document type, that contains a field to upload PDF files. The created content items of this document type aren't public so a specific ...
0
votes
1answer
29 views

pubxml XML to change a web.config value on web deployment

Suppose I have a web.config parameter under <appSettings><add key="myParam" value="myValue"/></appSettings> and I want to modify the value for myParam depending on the publish ...
0
votes
2answers
20 views

How to configure SQL Server + Web.config

I'm new to ASP.Net and have been given access to a solution that I am currently trying to get up and running. In Web.config, I see something like this: <add name="FOOBAR_Connection" ...
0
votes
1answer
21 views

2 culture settings for same web application?

Is it possible to use fr-CA culture setting for dates (franch dates) and en-CA for numbers (period decimal separator) in ASP.NET Web.config? Thank you
0
votes
1answer
25 views

How to redirect to login screen if not logged in for certain web pages

So I have a login.aspx and it is set up so that all forms redirect to the login page if you are not logged in. This site is suppose to be public, no login is required except if you are admin and want ...
1
vote
0answers
22 views

how to set web.config default page for php index file

I'm trying to start my web site on iis server and I use php for that. every thing is fine on server but defaultDocument. how can I set that on web.config file. <?xml version="1.0" ...
0
votes
1answer
16 views

URL Rewrite Multiple Params

I am having a problem writing a regular expression pattern for a URL Rewrite in IIS 7. I am doing the work directly in my web.config file, and the pattern I need help with is described below: URLs ...
0
votes
0answers
27 views

split 2 web.config to avoid restart an application

I have the next two web.config in two projects, I want to create a external one which references to these two. How can I do it?. I wanted to do this to avoid to restart the application everytime I ...
0
votes
1answer
40 views

Visual Studio 2010 + ASP.Net Web Project: Looking in current folder for web.config (instead of root)

So I have been developing this application for my boss over the past few weeks and then last night the IT Administrator jacks with my machine. I think the only thing he did was rename the computer ...
0
votes
1answer
16 views

Displaying a particular web page when user roles don't match the <allow roles> tag in Web.config

We would like to display a particular web page when the role of people who are not administrators, sfaff and data entry administrators are logged in to our ASP.Net web site. We would like to display ...
0
votes
1answer
20 views

Passing the connection string from 2 web applications sharing a DAL?

I have a solution with two MVC 3 application sharing the same DAL libaray. Each application is pointing to a different db and their connection string is stored in their respective web.config file. ...
0
votes
1answer
12 views

not found error not handling in web.config

i am trying to put customError tag in web.config file.. still it doesn't redirect to default url http://www.lacopainn.com/page/2/?p=dbasndwefxknyafc&wpmp_switcher=mobile here is my site. when ...
0
votes
1answer
16 views

UrlRewriting with urlrewritingnet

I want to rewrite url like below http://www.abc.com/ac/ac0008 to http://www.abc.com/temp/urlRewriter.aspx?oldurl=/ac/ac0008 and http://www.abc.com/ac/ac0008?vmid=233 to ...
0
votes
2answers
51 views

Is it possible to edit .Config file using a batch script

Here some part of the .config file that I have: <cs.components> <clear/> <cs.component name="Security"/> <cs.configitems> ...
0
votes
0answers
13 views

MaxArrayLength property bypassed in localhost?

I have a WCF service running on localhost that I call from a test application and it works fine. But when I deploy that same service on another machine, calls from my test application blow up with ...
0
votes
0answers
24 views

htaccess rewrite rule to web.config

I'm migrating a website from a Linux/Apache2 server to a Windows/IIS7. My website depends on a strict but simple .htaccess rule: RewriteEngine on RewriteCond $1 ...
0
votes
0answers
17 views

Web.Config transformation during performace test on VisualStudio

Is there a way to change a web.config parameter (ConnectionString) during a performance test batch (load test) automattically, in order to have result sets from differet databases? If so, how? I ...
0
votes
1answer
24 views

IIS Rewrite root folder to different subfolders

I'm setting up a folder structure inside an application that looks like such: c:\inetpub\wwwroot\contoso\public c:\inetpub\wwwroot\contoso\secured I am wanting to map the following URLs to those ...
0
votes
0answers
15 views

Specify which child application should not inherti web.config in asp.net application

I created 3 applications in iis 7 app1 app2 app3 under our main application. The applications are all pointing to the same folder as a test to see the location tag. When the application inherits the ...
0
votes
0answers
12 views

IIS Site Creation through PowerShell

I have written a script to create IIS Website and modify the settings for the same in PowerShell. However, I am successfull in creating the site but the web.config file could not be generated in the ...

1 2 3 4 5 79