如何GridView中点击链接实现下载功能
我用Gridview绑定一些文件的名字,希望点击文件名就可以下载该文件。文件的上传我已经实现,可是很难实现我说的上述下载功能。
<asp:GridView ID="GridView3" runat="server" AutoGenerateColumns="False" CellPadding="4"
ForeColor="#333333" GridLines="None" Width="603px" DataKeyNames="SoftID" OnRowDeleting="GridView3_RowDeleting">
<FooterStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:BoundField DataField="SoftID" HeaderText="SoftID" Visible="False">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:HyperLinkField DataNavigateUrlFields="SoftID" DataNavigateUrlFormatString="Soft.aspx?SoftID={0}"
DataTextField="SoftName" HeaderText="软件标题">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
</asp:HyperLinkField>
<asp:BoundField DataField="SoftContent" HeaderText="软件介绍">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:HyperLinkField DataNavigateUrlFields="SoftID" DataNavigateUrlFormatString="Soft.aspx?SoftID={0}"
DataTextField="SoftLogin" HeaderText="下载" />
<asp:CommandField DeleteText="删除软件" HeaderText="删除软件" ShowDeleteButton="True" />
</Columns>
<RowStyle BackColor="#E3EAEB" />
<EditRowStyle BackColor="#7C6F57" />
<SelectedRowStyle BackColor="#C5BBAF" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#666666" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>