P
Philippe Meunier
Hello,
I've built a web application that ask the user for 3 values (textboxes) and
when the user press a button (command button) the server genereates a report
in a temporary html file
My App is in the folder c:\inetpub\wwwroot\TestReport
My report is generated in c:\inetpub\wwwroot\TestReport\Tmp\Test.html
I need to set my Cookieless property to True (for something else), so in the
URL, there is a session ID that prevent me to redirect to my Temporary
report.
When I do Response.Redirect("Tmp/Test.html") it does not work, but the same
thing works when I set Cookieless to false because there is not Session ID
in the URL.
..
I also had to enable Write for ASPNET in the rights of the Tmp folder to
allow my report to be written there.
Can someone help me ? I don't know how to show my temporary report in these
circumstances
I've built a web application that ask the user for 3 values (textboxes) and
when the user press a button (command button) the server genereates a report
in a temporary html file
My App is in the folder c:\inetpub\wwwroot\TestReport
My report is generated in c:\inetpub\wwwroot\TestReport\Tmp\Test.html
I need to set my Cookieless property to True (for something else), so in the
URL, there is a session ID that prevent me to redirect to my Temporary
report.
When I do Response.Redirect("Tmp/Test.html") it does not work, but the same
thing works when I set Cookieless to false because there is not Session ID
in the URL.
..
I also had to enable Write for ASPNET in the rights of the Tmp folder to
allow my report to be written there.
Can someone help me ? I don't know how to show my temporary report in these
circumstances