Posted on: 6/5/2014 5:42:35 PM | Views : 350

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 ...