I have generated a pdf using iTextSharp, when its created it saves automatically in the location provided in my code on the server not on the client side and of course witho
You need to send a content disposition header to the users browser. From memory the code is something sort of like this:
Response.ContentType = "application/pdf"; Response.AppendHeader("Content-Disposition","attachment; filename=nameofthefile.pdf");