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

📄 customcontrol1.vb

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

Namespace MyCustomControls
   Public Class CustomControl1 : Inherits Control
      private strMessage as string = "This is my custom control!"
      public property Message as string
         Get
            Message = strMessage
         End Get
         Set
            strMessage = value
         End Set
      end property

      Protected Overrides Sub Render(Output as HtmlTextWriter)
         Output.Write(strMessage & " The time is now " & _
            DateTime.Now.ToString)
      End Sub
   End Class

End Namespace

⌨️ 快捷键说明

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