コードビハインドでスパンを itemTemple (グリッドビュー内) に追加したい
<itemTemplate>
// Here i want a span build up with code behind
<asp:HyperLink ID="hyperlinkID" runat="server">#</asp:HyperLink>
</itemTemplate>
これは可能ですか、それとも aspx でプレースホルダーを宣言する必要がありますか?
コードビハインドでスパンを itemTemple (グリッドビュー内) に追加したい
<itemTemplate>
// Here i want a span build up with code behind
<asp:HyperLink ID="hyperlinkID" runat="server">#</asp:HyperLink>
</itemTemplate>
これは可能ですか、それとも aspx でプレースホルダーを宣言する必要がありますか?
サーバー側でアクセスしたいスパンは、Label
後でスパンとしてレンダリングされる です。
<ItemTemplate>
<asp:Label ID="LblId" runat="server" Text='<%# Bind("TextColumn") %>'></asp:Label>
</ItemTemplate>
特定の条件下で非表示にする場合は、RowDataBound
-event を使用します。Visible=false
サーバー側では、クライアント側ではまったくレンダリングされないことを意味します。