0
我有一個綁定到數據列狀態的gridview列'Assignment Result'。當綁定數據列的值爲'Fresh'時,如何讓gridview顯示'Untouched'。在gridview列中顯示備用列值
我有一個綁定到數據列狀態的gridview列'Assignment Result'。當綁定數據列的值爲'Fresh'時,如何讓gridview顯示'Untouched'。在gridview列中顯示備用列值
你可以寫一個輔助方法:
public static string FreshLabel(object value)
{
if ((string)value == "Fresh")
{
return "Untouched";
}
return "Touched";
}
,然後綁定列使用你的數據裏面:
<asp:Label runat="server" Text='<%# FreshLabel(Eval("SomeColumn")) %>' />
由於一噸達林! – inlokesh