0
我嘗試學習一點點Azure的web應用程序的東西,但...Azure的web應用程序ConfigurationManager.AppSettings爲空
我添加應用程序設置部署插槽和嘗試通過ConfigurationManager.AppSettings讀它[」測試「],但它是空的。
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;
}
}
}