Originally posted by Wokawidget
Hang on, I showed you how to get the prop from a web usercontrol the other day....????



What was the problem?

Woof
I was being a very bad boy...
Problem with those stupid ID's the other programmers are giving them...
Decided to use Get / Set:
Code:
    Public Property text() As String
        Get
            If txtIssueClosed.Text = "" Then
                Return Nothing
            Else
                Return txtIssueClosed.Text
            End If
        End Get
        Set(ByVal Value As String)
            txtIssueClosed.Text = Value
        End Set
    End Property