是否可以在DetailsView字段中顯示函數的結果而不是屬性的值?將DetailsView字段綁定到函數而不是屬性
例如,而不是:
<asp:Label ID="m_LabelPlantCode" runat="server" Text='<%# Bind("PlantCode") %>'></asp:Label>
也許是這樣的:
<asp:Label ID="m_LabelPlantCode" runat="server" Text='<%# Bind("PlantCode(true)") %>'></asp:Label>