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

📄 librarysectionhandler.vb

📁 asp入门到精通的源代码
💻 VB
字号:
Imports System
Imports System.Configuration
Imports System.Xml

Namespace TYASPNET.Handlers
   Public Class LibrarySectionHandler : Implements IConfigurationSectionHandler
      Public Function Create(parent as Object, configContext as Object, section as XmlNode) as Object Implements IConfigurationSectionHandler.Create
         dim strFileName as String
         strFileName = section.Attributes.Item(0).Value
         
         dim objReader as new XmlTextReader(strFileName)
         return objReader
      End Function
   End Class

End Namespace

⌨️ 快捷键说明

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