G
GaryB
I have the following Response.Redirect that works just fine:
Response.Redirect("../CrystalViewer.aspx?id=" & CrystalFileName)
I changed it to a Server.Transfer like so:
Server.Transfer("../CrystalViewer.aspx?id=" & CrystalFileName)
Now it blows with the following error:
Invalid path for child request
'../CrystalViewer.aspx?id=c:\temp\ReportToPrint.xml'. A virtual path is
expected.
I thought that was a virtual path. How can I make this work with
Server.Transfer?
Thanks
Gary
Response.Redirect("../CrystalViewer.aspx?id=" & CrystalFileName)
I changed it to a Server.Transfer like so:
Server.Transfer("../CrystalViewer.aspx?id=" & CrystalFileName)
Now it blows with the following error:
Invalid path for child request
'../CrystalViewer.aspx?id=c:\temp\ReportToPrint.xml'. A virtual path is
expected.
I thought that was a virtual path. How can I make this work with
Server.Transfer?
Thanks
Gary