这是一个带有 Visual Studio 2010 的 ASPX/CS 项目。这是一个配置管理器问题。
我正在成功调试(某种程度)一些已经在服务器上使用的代码。但是有一段代码在 live 版本中播放 URL,不应该在 debug/localhost 版本中使用。
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();
}
这段代码不应该出现在“Response.Redirect....”行上,因为 ConfigurationManager 中的“IsTesting”应用程序设置应设置为 true。我该如何设置?