i have used "GO To Url" property of RDLC set to below value;
=parameters!ParamUrl.Value +"ReportUIs/MonthlyReport.aspx?SpecDate=" + Fields!SpecDate.Value.ToString() + "&TrainPK=" + Fields!TrainNo.Value.ToString() + ""
And it works fine with same tab or form. I want make this URL opened in new tab or window? How can i give like Target=_blank option for this ?
tried this; works well but issue with the main form(first form):->
="javascript:window.open('"+parameters!ParamUrl.Value +"ReportUIs/MonthlyReport.aspx?SpecDate=" + Fields!SpecDate.Value.ToString() + "&TrainPK=" + Fields!TrainNo.Value.ToString() + "');"