databinding and webusercontrol

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,
i've exposed the .Text property of a TextBox on my control page. Is there
anyway to make this show up in the QuickMenu -> EditBindings dialog?

thanks,
rodchar
 
something like this:
Public Property UcTextBox() As String
Get
Return Me.TextBox1.Text
End Get
Set(ByVal value As String)
Me.TextBox1.Text = value
End Set
End Property
 
Back
Top