The behavior of the links on the search results page can be changed with a little tuning. In search.ascx you'll spot DownloadUrl(DataBinder.Eval(Container, "DataItem.EntryId")) which produces the url. You can override the download behavior by adding "method=attachment" to this. So it becomes: DownloadUrl(DataBinder.Eval(Container, "DataItem.EntryId")) & "&method=attachment" Peter
|