Jump to URL

Hi,

In one CaseLog report i implemented the navigation i.e navigate to another report CaseDetail

Casedetail displaying the case information for the given case.In CaseLog Report when we click on CaseID it navigate to the CaseDetail report by taking CaseID as parameter and display information about that case.For this navigation iam using

Javascript.Window.Open("Path DisplayReports.Aspx Report=CaseDetail&caseID=" & FieldscaCaseID.Value

In DisplayReports.Aspx we are checking

If(Request.queryString["CaseID"]!=Null)

{

ReportParameter rp=new ReportParameter("CaseID",Request.Querystring["CaseID"].ToString())

}

When we click on CaseID it is taking into another window and displaying the caseDetail report with that case.but caseId is displaying in URL But my intention is not to show the CaseID in the URL.

How to acheve this

Please Help me.

Thanks in advance.



Answer this question

Jump to URL

  • Jump to URL