⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listing1806.aspx

📁 asp入门到精通的源代码
💻 ASPX
字号:
<%@ Page Language="VB" %>

<script runat="server">
   sub Page_Load(obj as Object, e as EventArgs)
      'retrieve the type information
      lblType.Text = ConfigurationSettings.GetConfig _
         ("system.web/TYASPNET21Days").ToString
      
      'retrieve information
      dim objSettings as NameValueCollection = ConfigurationSettings.GetConfig _
         ("system.web/TYASPNET21Days")
      'dim objSettings as NameValueSectionHandler = CType(ConfigurationSettings.GetConfig _
      '   ("system.web/TYASPNET21Days"), NameValueSectionHandler.TypeOf)
         
      Response.write(objSettings.Item("AppName") & "<BR>")
      
      'Response.Write(ConfigurationSettings.TYASPNET21Days("AppName"))
   end sub
</script>

<html><body>
   <b>Type:</b>
   <asp:Label id="lblType" runat="server"/>
</body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -