ASP.Net/Development/Configuration Settings — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 18:30, 26 мая 2010

Get value from Configuration Settings

   <source lang="csharp">

<%@ Page Language="VB" %> <html> <head>

  <script runat="server">
     Sub Page_Load()
        Message1.Text &= ConfigurationSettings.AppSettings("machineConfigKey")
        Message2.Text &= ConfigurationSettings.AppSettings("applicationConfigKey")
     End Sub
  </script>

</head> <body>

  <asp:label id="Message1" runat="server">Machine.Config setting: </asp:label>
  
<asp:label id="Message2" runat="server">Web.Config setting: </asp:label>

</body> </html>

<%-- <configuration>

  <appSettings>
     <add key="applicationConfigKey" value="bar"/>
  </appSettings>
  <system.web>
     <authorization>
        <deny users="?"/>
     </authorization>
  </system.web>

</configuration> --%>

      </source>