1
vote
1answer
29 views
Why are custom error pages not working for 404 errors
I have set up a page to handle errors that occur in a website I work on using web.config. I have used the customErrors section in web.config to do this, as described here
Here is …
0
votes
4answers
60 views
Can I configure a .NET application to read settings from an SQL database?
I want my app.config (or my web.config for that matter) to read from an SQL database instead of an XML file. How can I do that?
0
votes
2answers
27 views
How do I configure Apache to forward some URLs to two resin containers?
Good day,
I have two resin servers - r-server-a and r-server-b. I created two because both have web applications that need to be in the root context path '/' (and using same port …
0
votes
1answer
29 views
Batch Size in web config for Nhibernate in ASP.NET MVC
How do I set the batch size for Nhibernate? I'd like to do this in the web.config. The examples I see, don't make a lot of sense to me.
In this example they are using code to se …
0
votes
2answers
94 views
Is machine.config the best way to store a connection String?
Why are we using the machine.config file to store connection string although we have web.config file?
Any help would be appreciated.
0
votes
2answers
70 views
Is there a good “free” graphical web.config editor?
Like:
https://www.hunterstone.com/hsstore/ProductDetails.aspx?productID=101
but free :-)
1
vote
2answers
82 views
Can I use wildcards in the web.config location path attribute
In IIS 7 I try to deny access to all files with the extension .xml for all users.
I tried the following setting in my web.config file:
<location path="*.xml">
<syst …
19
votes
15answers
528 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:
…
0
votes
1answer
28 views
Referencing code in App_Code from web.config
I have a type in my App_Code folder from a Web Site project that I want to refer to in Web.config. The type attribute is requiring me to put in an assembly name. The internets is f …
1
vote
3answers
176 views
.NET DLL Settings and Config when there’s a Web Reference - whats going on?
My understanding is, that .NET doesn't really 'do' config files for DLLs - only the main Executable or Web App gets a config file, and all DLLs referenced by the Executable/Web App …
1
vote
1answer
66 views
Why is HttpContext.Session null when redirectMode = ResponseRewrite
As is suggested elsewhere, I am using redirectMode = ResponseRewrite in my custom error configuration so my custom error page can access the exception info. This has worked like a …
0
votes
2answers
115 views
ASP.Net Session State not enabled properly
I'm having trouble getting Session State to work correctly in my ASP.Net application. I've set EnableSessionState="true" in all my <%@ Page %> directives but I still seem to …
0
votes
1answer
27 views
What is the use of stateConnectionString in sessionState in Web.config?
I'm using VS 2005 for web forms.
Looking at the web.config I see a stateConnectionString attribute.
Is this really needed?
When is this needed?
How is this used?
…
0
votes
3answers
143 views
Binding ASP.Net Web.Config Settings To .ASPX File <a href></a>!?
The Scenario
I have an ASP.NET web project. I want to be able to define all of the links for the site inside my web.config file so that they can be changed easily if needs be. Cur …
1
vote
3answers
104 views
Run an ASP.NET website in a subfolder
Is there a way of running an ASP.NET website in a subfolder of the website?
As an example, say I wanted to run the screwturn wiki (http://www.screwturn.eu/) in a folder called "wi …
