2010-09-30 29 views
0

看不見的,我想知道我可以輕鬆地定製我的DetailsView控件,當它在創建模式ID字段應該是看不見的製作ID字段中的DetailsView

我可以rememebr,這是某事像可見= <%的代碼這裏...(IsCreated ??)

這裏有一個例子:

<asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateRows="False" DataSourceID="myDS" 
    Width="50%" DataKeyNames="MyId"> 
    <Fields> 
     <asp:TemplateField HeaderText="Id" SortExpression="MyId"> 
      <ItemTemplate> 
       <asp:Label ID="xxx" runat="server" Text='<%# Bind("MyId") visible=" **(if create mode than invisible else visible)** %>'></asp:Label> 
      </ItemTemplate> 
     </asp:TemplateField> 
    </Fields> 
</asp:DetailsView> 

感謝您的幫助

+0

你能否提供更多的細節,沒有足夠的可以解決你的問題。 – jimplode 2010-09-30 10:04:40

+0

完成,必須鍵入任何內容才能達到15個字符... – gruber 2010-09-30 10:16:05

回答

2

嘗試:

Visible="<%# this.IsCreated %>" 
相關問題