try
{
string str = "";
string ExamID = string.Empty;
ExamID = ddlTestList.SelectedValue;
if (this.Session["UserID"] != null)
str = Convert.ToString(this.Session["UserID"]);
this.rptViewer.ServerReport.ReportServerUrl = new Uri(ConfigurationManager.AppSettings["ReportServerURL"]);
this.rptViewer.ServerReport.ReportPath = "/" + ConfigurationManager.AppSettings["ReportServerFolder"] + "/StudentComparisonFreeTest";
this.rptViewer.ProcessingMode = ProcessingMode.Remote;
ReportParameter[] reportParameterArray = new ReportParameter[2] { new ReportParameter("StudentID", str), new ReportParameter("E…