Hello,
Below is my code in Page Load in aspx page. I want to access that value in User Control button click( I have a button in User Control). How can I do this ?
ASPX Page Load
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
UserEmail = UserSession.EmployeeEmail
End Sub
User Control Button Click
Protected Sub btnSendEmail_Click(sender As Object, e As EventArgs) Handles btnSendEmail.Click
//Get the value here
End Sub
Go to the complete details ...