excellent. thanks.
"Steve C. Orr [MVP, MCSD]" <Steve@Orr.net> wrote in message
news:u5n2B3F2FHA.1132@TK2MSFTNGP10.phx.gbl...[color=blue]
> I'd suggest creating a download page that manages such files. It might
> use Response.WriteFile for example:
>
> Response.Clear()
> Response.ContentType = Whatever
> Response.Writefile("c:\whatever.zip")
> Response.AddHeader("Content-Disposition", _
> "attachment;filename=whatever.zip")
> Response.End()
>
> Or you might choose to store your files in SQL Server, such as in this
> example that explains all about uploading and downloading files:
>
http://SteveOrr.net/articles/EasyUploads.aspx
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
>
http://SteveOrr.net
>
>
> "Jeff Jarrell" <jjarrel_NOSPAM@yahoo.com> wrote in message
> news:%232ArjXD2FHA.3660@TK2MSFTNGP15.phx.gbl...[color=green]
>>I want to setup a downloads page on my site. Most of the time they are zip
>>files but they are also MSI files. Things work ok if I simply put an <a>
>>element referencing the file to download but I'd like a little more smarts
>>to it. I'd like to know how many times the file was downloaded along with
>>the referrer information. I'd also like to hide the actual physical file
>>location.
>>
>> So I send it to another URL to record the download but then how do I
>> initiate the download (from a push point of view).
>>
>> thanks.
>>[/color]
>
>[/color]