Here are the code for Chris's advise. Hope that helps.
Make sure your module inherits from PortalModuleBase
Partial Class ViewChangePassword
Inherits Entities.Modules.PortalModuleBase
and you should then have access to UserInfo
If Not UserInfo.Membership.Username Is Nothing Then
pnlPassword.Visible = True
pnlPassword.DataBind()
Me.lblUserName.Text = UserInfo.Username
Me.lblFirstName.Text = UserInfo.FirstName
Me.lblLastName.Text = UserInfo.LastName
End If