Hi All,
I have configured my web application to utilize Health Monitoring with a TemplatedMailWebEventProvider provider.
In my template page, I am trying to access Cookies, Session vars, and even ServerVariables. None of these seem to be available.
Some things work such as Request.IsSecureConnection or Request.Url, but not Request.UserAgent.
Thanks,
Jon
/* Application Info */
WebApplicationInformation webAppInfo = WebBaseEvent.ApplicationInformation;
lblAppDomain.Text = webAppInfo.ApplicationDomain;
lblAppPath.Text = webAppInfo.ApplicationPath;
lblAppVirtualPath.Text = webAppInfo.ApplicationVirtualPath;
lblAppMachineName.Text = webAppInfo.MachineName;
lblAppTrustLevel.Text = webAppInfo.TrustLevel;
MailEventNotificationInfo eventInfo = TemplatedMailWebEventProvider.CurrentNotification;
foreach Go to the complete details ...