Replace hard-coded
[Date].&[2008-09-26T00:00:00]
to the formula
=DateAdd("m", -1, Now)
For "ToDate," just pass in a formula that returns the current date
=Now
Now the result looks something like this.
<ReportParameters>
<ReportParameter Name="FromDate">
<DataType>DateTime</DataType>
<DefaultValue>
<Values>
<Value>=DateAdd("m", -1, Now)</Value>
</Values>
</DefaultValue>
<AllowBlank>true</AllowBlank>
<Prompt>FromDate</Prompt>
</ReportParameter>
<ReportParameter Name="ToDate">
<DataType>DateTime</DataType>
<DefaultValue>
<Values>
<Value>=Now</Value>
</Values>
</DefaultValue>
<AllowBlank>true</AllowBlank>
<Prompt>ToDate</Prompt>
</ReportParameter>
</ReportParameters>
[]
, <ReportParameters> ToDate; .
RDL .
.
FromDate:

ToDate:
