User Control And Master Page ASP.Net

<%@ Page language="VB" %>
<%@ Register TagPrefix="Control" Namespace="Control" Assembly="Control" %>

Sub Page_Load(Sender As Object, E As EventArgs)
  If Not IsPostBack Then
    Dim RandomGenerator As Random
    RandomGenerator = New Random()
    SimpleControl1.Text = RandomGenerator.Next(1,100)
  End If
End Sub



  
    Default
  
  
    
      
      
      


        Values are not maintained across postbacks. Re-load
      


    
  

File: Control.vb
Imports System.ComponentModel
Imports System.Web.UI
Namespace Control
    ")> Public Class SimpleControl
        Inherits System.Web.UI.WebControls.WebControl
        Dim _text As String
         Property [Text]() As String
            Get
                Return _text
            End Get
            Set(ByVal Value As String)
                _text = Value
            End Set
        End Property
        Protected Overrides Sub Render(ByVal output As System.Web.UI.HtmlTextWriter)
            output.Write([Text])
        End Sub
    End Class
End Namespace