Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Member
654 Points
174 Posts
Apr 17, 2006 09:54 PM|LINK
is it feasible to write this function as; this is for business layer
_CurrentDate = Value
while for aspx.vb
CurrentDate.Text = DateTime.Now.ToString()
objCustomer.currentDate = txtDate.Text
bluebird07
Member
654 Points
174 Posts
Re: how to get current system date?
Apr 17, 2006 09:54 PM|LINK
is it feasible to write this function as; this is for business layer
Public Property currentDate() As String Get Return _CurrentDate End Get Set(ByVal Value As String)_CurrentDate = Value
End Set End Propertywhile for aspx.vb
CurrentDate.Text = DateTime.Now.ToString()
objCustomer.currentDate = txtDate.Text