で特定のファイルをダウンロードクリックして、私は6列を持つGridViewコントロールを持っています。 6列目の行をクリックすると、そのファイルをダウンロードする必要があります。私はデータベースからgridviewをバインドしています。どのように私はグリッドビューの列をリンクのように取ることができますか?は、GridViewの行が私のアプリケーションでasp.net
私のマークアップ:
<asp:GridView ID="GridView1" Width="950px" CssClass="Grid" runat="server" AutoGenerateColumns="false" >
<Columns>
<asp:BoundField DataField="ID" HeaderText="" ItemStyle-ForeColor="White" />
<asp:BoundField DataField="Name" HeaderText="Name" />
<asp:BoundField DataField="SName" HeaderText="SName" />
<asp:BoundField DataField="Date" HeaderText="Date" />
<asp:BoundField DataField="Size" HeaderText="Size(MB)" />
<asp:BoundField DataField="Time" HeaderText="Time" />
<asp:HyperLinkField DataTextField="FileName" DataNavigateUrlFields="Id" HeaderText="File Name" ItemStyle-Width = "150" />
</Columns>
</asp:GridView>
マイ画像:
?そのURLはバインディングのコレクションで利用可能ですか? –
私のGridViewのは、データベースからの結合が、どのように私はGridViewの列を取ることができますして提出されたハイパーリンクを取るためにそれokですリンクはどこバウンド、[リンクを含むようにGridViewの列を設定する – Ben805
が重複する可能性を提起したとして、あなたは私のGridViewの列を取るために別の方法を伝えることができますデータはURLのリストです](http://stackoverflow.com/questions/15362545/setting-a-gridview-column-to-contain-links-where-the-bound-data-is-a-list-of- UR) –