What is the Congiguration manager class in asp.net / c#?

Joined
Apr 3, 2007
Messages
8
Reaction score
0
What is the Congiguration manager class in the code and how to you set it in the Project or IDE?

How do I set AppSettings in an ASPX project's Configuration manager?

This is an ASPX/CS Project with Visual Studio 2010. It is a Configuration Manager question.

I am successfully debugging (sort of) some code that is being used already on a server. But there is a piece of code that plays with the URL in the live version that should not be used in the debug/localhost version.

Code:
     protected void Page_Load(object sender, EventArgs e)
        {
            if (ConfigurationManager.AppSettings["IsTesting"] == "false" && Request.Url.ToString().Contains("http:"))
            {
                Response.Redirect(Request.Url.ToString().Replace("http:", "https:"));
            }

            LoadMasterTemplate();
        }
This piece of code lands on the "Response.Redirect...." line when it should not because the "IsTesting" app setting should be set to true in the ConfigurationManager . How do I set that?
 
Joined
Sep 23, 2013
Messages
4
Reaction score
0
You should set a value in appsetting inside web.config like
<add key="IsTesting" value="false">
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,480
Members
44,900
Latest member
Nell636132

Latest Threads

Top