Web.config is an XML file that stores the main settings and configuration files for an ASP.NET web application.
0
votes
1answer
17 views
Rewriting with multiple GET variavles
Let's say I have a page breed.php?id=100, which is rewritten as breed/100, but how can I also add a second GET variable, not have a slash in between them, so the link is breed/100-101. I have ...
2
votes
1answer
18 views
Entity Framework DbContext in Azure Web Role
I am migrating an existing Web Application (using Entity Framework 5) to an Azure Web Role.
The database connection string is being moved from the web.config to the ServiceConfiguration.*.cscfg ...
-1
votes
0answers
13 views
ASP web.config deny
I have an asp.net application that is hosting some services. The service directory has a web.config that has so only authenticated users can access the service directory.
The problem is now I am ...
0
votes
1answer
19 views
WCF configuration help - can't get it right
I've been struggling with this for a couple of days now. I'm trying to host a WCF service in IIS, so our other websites can access the data that this service will expose. Writing the code was fairly ...
0
votes
1answer
13 views
Migrating to Azure Web Role - porting the web.config file
I am migrating an existing Web Application to a Web Role. Does this mean that the web.config will be ignored?
I have connection strings, provider details, and tons of other config items in the ...
0
votes
0answers
4 views
Using MSDeploy Web Transforms in BuildMaster
In our projects we have multiple config files for each environment using the techniques prescribed by Microsoft as outlined here:
http://msdn.microsoft.com/en-us/library/dd465326.aspx
So we have ...
0
votes
0answers
9 views
Configure IIS application for impersonalization
I have sample web service and console client which connects to service and GetData().
I need to configure it for impersonation by given contract operation and by all operations.
I set Windows ...
1
vote
1answer
27 views
Copying rewrite rules from a web.config to another
We are planning on making a c# script to automate the copying of rewrite rules from one web.config to another. We have multiple web.config's for each customer, and we have some general rewrite rules ...
0
votes
0answers
14 views
web.config single user basic auth
In nginx I can create a authentication response which sends
WWW-Authenticate:Basic realm="Private Network"
causing a login for a single user/password to popup without creating a login.aspx
Setting
...
0
votes
0answers
11 views
Handlers in IIS
I use chart in my website,because of this use handlers like below in web.config,every thing is ok in Visual Studio when i run my website but in IIS doesn't show chart,why ?
<system.web>
...
0
votes
0answers
24 views
How to exclude web.config from WIX setup
I'm creating a WIX setup for a Web Application. I used the setup to wix add-in to do this very fast. But how do I exclude the web.config out of the directory?
I don't want a filter on all the .config ...
1
vote
0answers
17 views
Config transformation in WIX setup
I'm creating a MSI setup with WIX for my Web Application. This works correct. The only thing that I don't get to work is to enabling the config transformation of the standard web application publish ...
-2
votes
2answers
31 views
web.config connectionStrings on production server
I'm attempting to deploy my first website containing a database. The test local version has the following connection strings
<connectionStrings>
<add name="ApplicationServices"
...
0
votes
3answers
25 views
Can we modify the authorization section of web.config file on runtime?
Can we modify the authorization section of web.config file on run-time?
0
votes
1answer
26 views
Access limitation to files in website
How can i put limitation in access different user? My website, according to different
user, each user can only access to it's own files and i don't want other users to be
able to download another ...