when user signup then current date will be save in database
store procedure of user signup is
ALTER procedure [dbo].[spusersignup]
@UserName nvarchar(50),
@Password nvarchar(50),
@Email nvarchar(50),
@PhoneNumber nvarchar(50)
as
Insert into [Users](UserName,Password,UserTypeID,CreateDate,Email,PhoneNumber)
values(@UserName,@Password,2,GETDATE(),@Email,@PhoneNumber)
i call this store procedure in signup button
then after this when user log in and view his/her profile then
join date will be shown in his/her profile ..how i do this??