2017-03-22 123 views
0

我嘗試學習一點點Azure的web應用程序的東西,但...Azure的web應用程序ConfigurationManager.AppSettings爲空

我添加應用程序設置部署插槽和嘗試通過ConfigurationManager.AppSettings讀它[」測試「],但它是空的。

Azure portal

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Configuration; 

namespace WebApplication1 
{ 
    public partial class WebForm1 : System.Web.UI.Page 
    { 

     protected void Page_Load(object sender, EventArgs e) 
     { 
      string text = ConfigurationManager.AppSettings["TEST"]; 
      Button1.Text = text; 
     } 
    } 
} 

回答

0

配置管理器只,您可以訪問你的本地配置文件,以訪問,你需要爲使用的CloudConfigurationManager類或RoleEnvironment類Azure的配置設置。

更多詳細信息可查詢here

相關問題