RE: FN-FORUM: ASP to ASP.NET
date posted 27th January 2006 15:30
Thanks Damon,
Wish I'd known that two months ago, lol.
Craig
-----Original Message-----
Set up a private variable that will be set by the Page Load.
The property returns this value. Set the variable during Page Load
Private path As String
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
varPath = "test"
End Sub
Public Property varPath() As String
Get
Return path
End Get
Set(ByVal Value As String)
path = Value
End Set
End Property
HTH