I'm using ASP.Net WebForms with C#
Calling the report server this way:
ReportViewer1.ServerReport.ReportServerCredentials = new ReportServerCredentials(_username, _password, _domain);
_username = System.Web.HttpContext.Current.Request.LogonUserIdentity.Name.ToString().Split('\\')[1]
_domain = This one is easy
_password = I cannot get this to pass to the above Report
I'm using Active Directory and the User has been authenticated
Is there a way to call it like this ReportViewer1.ServerReport.ReportServerCredentials = GetAuthInfo();
where GetAuthInfo() is a function that will return me the credentials for the person?
Does anyone know how to do this or has anyone run into this issue
--Pat Brown