Hi
I have a script thats shows some files from a folder on my page "Works fine" when i click a file the browser load and i get the error "Browser cant handle the file" bc. its trying to open it...
How can i fix this issue, for this code, so when i click the file, it shows me the "Save As Dialog" so the user can have the possibility to select where to save the file on the pc/mac she/he is using. !?
<ul class="thumbnails"> <asp:DataList ID="showfiles" runat="server" RepeatColumns="6" CellPadding="10" RepeatLayout="flow"> <ItemTemplate> <li class="span2"><a class="thumbnail" href='<%# DataBinder.Eval(Container.DataItem,"FullName") %>'><asp:Image ID="folderfiles" runat="server" ImageUrl='<%# getImageUrl(DataBinder.Eval(Container.DataItem,"Name")) %>' ToolTip='<%# Bind(" ...

Go to the complete details ...