我想在web.config
文件中创建一个变量,并在Web表单中使用该变量。
我该如何实现?
在web.config中:
<appSettings>
<add key="message" value="Hello,World!" />
</appSettings>
在cs:
string str = ConfigurationManager.AppSettings["message"].ToString();
原文链接:https://www.f2er.com/aspnet/252945.html