Possible Duplicate:
href image link download on click
i have created a bulleted list as
<asp:BulletedList ID="BulletedList1" runat="server" DisplayMode="HyperLink"
DataSourceID="SqlDataSource1" DataTextField="description"
DataValueField="link" onclick="BulletedList1_Click">
</asp:BulletedList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:chaaapaConnectionString6 %>"
SelectCommand="SELECT [description], [link] FROM [quiz]">
</asp:SqlDataSource>
the datavalue field contain the link to the image file . when clicked the image is shown in the browser . Bit i want that a download box is displayed instead.