| Author: Ramasamy.N 28 Jul 2007 | Member Level: Gold | Rating: Points: 2 |
use the following tag
<a href="aspbook.aspx" runat="server"></a>
|
| Author: prabhakar 28 Jul 2007 | Member Level: Silver | Rating: Points: 2 |
string filename = Path.GetFileName(filepath) Response.Clear() Response.ContentType = "application/octet-stream" Response.AddHeader("Content-Disposition", _ "attachment; filename=""" & filename & """") Response.Flush() Response.WriteFile(filepath)
|