我将以下内容存储在我的 asp.net 网站根文件夹内的 stores.config 文件中。
<configuration>
<appSettings>
<add key="ClientId" value="127605460617602"/>
<add key ="RedirectUrl" value="http://localhost:49548/Redirect.aspx"/>
</appSettings>
</configuration>
我如何使用string Clientid = ConfigurationManager.AppSettings["ClientId"].ToString();
从该文件中调用它?调用它当然不起作用,因为它正在 web.config 中寻找它。
我不想将 appSettings 放在 web.config 文件中。这是允许的吗?