C
Claus Fuss
To make it simple, I'm doing this
Dim Location As String = AppDomain.CurrentDomain.BaseDirectory &
"reports\baseReport1.xls"
System.IO.File.Copy(AppDomain.CurrentDomain.BaseDirectory &
"reports\baseReport.xls", Location)
Response.Redirect("~/reports/baseReport1.xls")
Works fine in my computer, no problem, But in the server don't copy the
file so the Response.Redirect show me a Page Not Found message.
I gave all permissions to All User but still don't copy how can I solve
this, help please?
Dim Location As String = AppDomain.CurrentDomain.BaseDirectory &
"reports\baseReport1.xls"
System.IO.File.Copy(AppDomain.CurrentDomain.BaseDirectory &
"reports\baseReport.xls", Location)
Response.Redirect("~/reports/baseReport1.xls")
Works fine in my computer, no problem, But in the server don't copy the
file so the Response.Redirect show me a Page Not Found message.
I gave all permissions to All User but still don't copy how can I solve
this, help please?