I think it depends on how the postback is triggered. If you click the View Report button in the parameter prompt area, then the parameter values will be submietted.
Not sure if this applies to your scenario, but the View Report button raises the ReportViewer.SubmittingParameterValues event. If you want, you can add your session variable as a report parameter like so:
ReportViewer1.SubmittingParameterValues += new ReportParametersEventHandler(ReportViewer1_SubmittingParameterValues);
....
void ReportViewer1_SubmittingParameterValues(object sender, ReportParametersEventArgs e)
{
e.Parameters.Add(new ReportParameter("ShowDescription", "True"));
}
Cephas Lin This posting is provided "AS IS" with no warranties.