Web.config is an XML file that stores the main settings and configuration files for an ASP.NET web application.
0
votes
1answer
25 views
With a web.config transform, how do you inject a canonical url rule at the top?
Within an ASP.Net project, for the release build's Web.Config (using a Web.Release.Config transform file), how do you inject a canonical url rule in the rewrite section?
0
votes
0answers
61 views
<compilation debug=“true”/> I m getting this error in my web site
Please tell me whats wrong and what is the solution
<?xml version="1.0"?>
Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
...
1
vote
1answer
36 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 ...
2
votes
2answers
109 views
web.config is different in MVC3 and MVC4
Im doing a web application in C# and ASP.NET MVC4.
On inspection of the web.config file I noticed that MVC4 has this:
<system.web>
<compilation debug="true" targetFramework="4.0" />
...
0
votes
1answer
45 views
Detecting and alerting when web.config is corrupt
We recently ran into a situation where a bungled web.config deployment resulted in two 'appSettings' sections in our web.config. We've got detailed error shut off (it's prod) and so in the browser we ...
1
vote
1answer
52 views
Large file upload not going to custom error page when way over size limit
In my web config I specify a max size allowed and the custom error page with the following settings:
<system.web>
<httpRuntime maxRequestLength="102400" executionTimeout="600"/>
.
.
.
...
1
vote
1answer
55 views
Intermittent IIS/Azure Errors
I have a web app running on an Azure VM. It is single-code base, multiple db's. Based on appsettings in the web.config (basically localhost or production), it knows which database to use.
Just ...
0
votes
0answers
24 views
How do I use assemblyBinding to access assemblies in a child web application from the parent?
We have a thoroughly developed solution that interfaces with a service that supplies a specialized database and assemblies to use (dll files). One of the terms of the agreement with this service ...
0
votes
0answers
73 views
What is wrong with my web.config file and Role manager settings? IIS6.0 and SQL Server 2005 wont let me in
I have developed an application which works fine on my local IIS7 server. I can log into it using a different machine on the local network and access all areas.
After deploying it on an SBS2003 ...
0
votes
1answer
139 views
MSBuild - how to force “AfterBuild” target when I do deployment?
I have the following setup: ASP.Net MVC .Net 4.0 solution with 5 projects in it, and several solution configurations (Site1-Stage, Site1-Live, Site2-Stage, etc). The reason for this is simple - we ...
0
votes
2answers
81 views
The connection name 'DefaultConnection' was not found in the applications configuration or the connection string is empty
I just started getting this message when I run my ASP.NET MVC 4 application in debug mode in Visual Studio 2010 Professional in the internal development server. It was working fine till yesterday. It ...
2
votes
6answers
286 views
error occurred while establishing a connection to SQL Server
If I have my connection string in the web.config like this (added line feeds for better readability):
<add
name="conn"
connectionString="Data Source=(localdb)\v11.0; Initial
Catalog=MyDB; ...
2
votes
2answers
55 views
Set Queue Path in Web.config
I am using MSMQ in C#, how can i set queuepath in web.config?
Any suggestions?
Thanks
-1
votes
1answer
46 views
Something php + smarty like in c#? [closed]
Is it possible to have something like "php + smarty" in c#?
In php i call the .php file. The file creates the variables which
are assigned to smarty and then the template file is parsed by smarty
and ...
0
votes
0answers
31 views
How do I configure IIS to allow for extensionless scripts in a URL
I want to set up IIS so that if I have some script 'main' in my web root which is actually a php file and I resolve domain.com/main/virtual/directory/ IIS will treat the request as a request for the ...
0
votes
1answer
190 views
Generic Web.Config Rewrite to remove query strings and add url seo slug
I have the following URL Rewrite I am trying to create.
<rule name="Imported Rule 3">
<match url="^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)" ignoreCase="true" ...
1
vote
1answer
108 views
Web.config redirect one domain to non-https folder and another domain to https folder
I have a domain alias for my site. I would like to know how to redirect requests for domainA.ext to https://domainA.ext/folderA and requests for domainB.ext to http://domainB.ext/folderB
Presently I ...
1
vote
3answers
50 views
Adding location to a separate config file
I have a web.config file with a lot of sections like this:
<location path="folder">
<system.web>
<authorization>
<deny users="*"/>
</authorization>
...
3
votes
2answers
71 views
+50
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 ...
1
vote
2answers
98 views
Azure Websites PHP API - 405 Method Not Allowed on PUT and DELETE
I'm building a simple PHP web service using Azure Web Sites and I'm having trouble getting it to support PUT and DELETE http methods. Assuming it's something that'll have to go into the web.config ...
1
vote
1answer
21 views
Sharing web.config fies between sites
Not being a server admin I was wondering, can two ASP.NET websites on the same server sharing a common database use identical web.config files? I am developing a separately-branded companion website ...
0
votes
1answer
42 views
How to increase the maxlenght in web.Config and App.Config to upload the image?
In my program I am trying to save image to database. I am getting an exception
protocol exception was unhandled" The remote server returned an unexpected response (400) Bad Request
I looked up ...
0
votes
1answer
40 views
Web.config Remove ConnectionStrings node from Web.Release.Config
I have this in my Web.config so that my service will run locally:
<connectionStrings>
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data ...
0
votes
1answer
34 views
WCF Service - Impersonating fixed account in web config
I'm trying to write WCF Service which will be searching through Active Directory services. I would like to set this service to use my fixed credentials, so my password would not expire.
This is how ...
0
votes
0answers
42 views
How to redirect with 123-reg hosting
Here's what I have... (works fine with my GoDaddy hosting)
<system.webServer>
<rewrite>
<rules>
<rule name="Remove WWW prefix" >
<match url="(.*)" ...
0
votes
0answers
34 views
WCF - web.config to get it to use custom ServiceCredentialsSecurityTokenManager
As part of my end-goal of adding multiple authentication options to our SOAP service (here), I am trying to implement custom ServiceCredentials. MSDN describes this process here, but does not show ...
0
votes
2answers
80 views
Creating a string in a web.config and use it in a web.api
I am new in the web development world and I would like to create a variable in the web.config file so that I can use it in the .NET portion of the web.api
I found the following tutorials on how to do ...
1
vote
0answers
37 views
404 Error on custom cgi on Windows Azure
we are in trouble to configure custom cgi (modulev3.exe) by Paybox System
we follow : ...
1
vote
2answers
109 views
Glimpse Configuration - ambiguous resource
I try to get running Glimpse in my MVC4 website but i am getting error:
Ambiguous resource with name 'glimpse_config' found.
when i run /Glimpse.axd.
I configured it as the documention says. I ...
0
votes
0answers
126 views
Can't seem to define outbound rules for URL Rewrite in GoDaddy managed IIS7 server (Classic ASP)
I've been trying for the past couple of hours to define a few outbound rules using URL Rewrite rules on a GoDaddy managed IIS 7.0 server hosting a Classic ASP website.
At first I tried this but for ...
0
votes
0answers
70 views
service method call throws fault exception
I am creating a Windows Phone 7.1 project which uses a web service to access a database.
I have coded the service, but when I try to call the method from the application, i get a FaultException and I ...
0
votes
1answer
91 views
loginUrl in web.config
I have Admin folder and User folder. and Login.aspx page inside user folder and Login.aspx page inside admin folder.
i have web.config in admin folder and user folder, please help me for loginUrl in ...
1
vote
2answers
70 views
How to get pageurl form which error is occurred in asp.net
How to get pageurl from which error is occurred in asp.net.
i just need page url that is not found.
this is my code of web.config for custom error
<customErrors mode="On" ...
1
vote
2answers
61 views
Does a WCF Web Service, when invoked, use the config file of the invoking application?
Assume that I have an ASP.NET application and a WCF Web Service, both deployed on IIS 7.
One of my colleagues claims that when an ASP.NET application redirects the response to WCF Web Service, the ...
2
votes
1answer
135 views
Ajax htmlEditorExtender - Unrecognized element sanitizer
Hi I've downloaded the latest version of the Ajax Toolkit from Microsoft and I'm trying to setup the sanitizer for the htmlEditorExtender, but I keep getting the following error when trying to build ...
0
votes
1answer
47 views
wcf maxReceivedMessageSize Limit
As far as I know the limit on maxReceivedMessageSize property is limited by max int size which is 2147483647 bytes (2gb) I'm hoping this information is not correct as I'm typing it .
In my ...
0
votes
2answers
109 views
Session_End doesn't call after i close browser
I use below setting in web.config
<sessionState mode="InProc" cookieless="false" timeout="10"/>
...
<authentication mode="Forms">
<forms loginUrl="login.aspx" timeout="10"/>
...
0
votes
1answer
39 views
Windows Azure turned £ (GB Pound symbol) to $ (US Dollar symbol)
In my code I have this:
@String.Format("{0:c}", item.Amount)
It shows for example £4.50 when I run it in debugging mode. When I deployed my app to Windows Azure however it outputs $4.50.
I have ...
0
votes
2answers
40 views
Azure DNS hostname or IP reference in web.config?
When connecting to Azure services in my applications, is it preferable to use the DNS hostname or the IP?
For example, I have a SQL Server hosted in a virtual machine. Should I configure my ...
2
votes
2answers
101 views
Trying to read web.config file for an IIS site from a Windows service
I am trying to look for a special web.config file for a web site installed on a local IIS. I do this search from a Windows service. I do the following:
using (ServerManager serverManager = new ...
0
votes
0answers
85 views
Entity framework: Keyword not supported: 'provider'
I am having problem deployment my ASP.NET MVC4, it shows error:
Keyword not supported: 'provider'
I tried changed to provider="System.Data.Oledb" and removed provider=System.Data.SqlClient; in ...
0
votes
1answer
62 views
IIS Authentication in web.config
In our project, a user can upload documents to a directory. The problem is that a user cannot access those files via the URL.
After playing around with permissions in IIS, I was able to download a ...
0
votes
1answer
42 views
Applying TDD/unit testing for config transforms?
Does anyone know of any techniques or frameworks that can be applied to effectively unit test config transforms, particularly on a build server?
For example, if I add a new connection string to the ...
0
votes
0answers
61 views
Telerik 2013 Q1 upgrade
I have updated my Telerik DLL to the 2013 Q1 version .. after adding the reference it is build successfully but this is the error when i am accessing the page it shows.
Could not load file or ...
0
votes
1answer
94 views
Can't getting value from Web.config
I am facing an issue with getting a value from Web.config.
Here is my web.config code which contains Key
<appSettings>
<add key="ClientValidationEnabled" value="true" />
<add ...
1
vote
1answer
29 views
Endpoints in other config file
I have a Web Application and I want to setup my endpoints in other config file (not in Web.config). How to do this?
I tried set attribute configSource in some tags but it doesn't work.
Structure of ...
0
votes
0answers
20 views
Using Windows Azure Websites with ExtensionlessUrlHandler
I've been searching for a while, and hopefully you have some suggestions I could try. So I have a RESTful service written in PHP using CodeIgniter and REST Server library. URL rewriting works perfect, ...
0
votes
1answer
20 views
Get a List of non-inheritet connectionstrings in C#
I have an IIS (>7) with two applications /foo and /foo/bar. Both have several connectionstrings and I need to get a list of all connectionstrings of /foo/bar that are not inherited from /foo. I use ...
0
votes
0answers
32 views
Force Page Redirects to Redirect to Default Page
I Hope my title was not confusing.
The website that I'm handling is about to be taken down for decommission,
I have disabled all the relevant anchor links and buttons,
now I'm trying to force any ...
1
vote
0answers
60 views
Security Issues with Write Permissions on Web.config
I currently have a PHP site running on an IIS7.5 server.
I use the built url rewriting tool for IIS in the web.config.
My CMS admin has the ability to allow the user to write their own rewrite. So ...


