program tip

ASP.NET GridView에서 부울을 Yes / No로 변환 할 수 있습니까?

radiobox 2020. 11. 23. 07:58
반응형

ASP.NET GridView에서 부울을 Yes / No로 변환 할 수 있습니까?


GridView부울에 매핑 된 열 이있는 ASP.NET 이 있습니다. "True"/ "False"대신 "Yes"/ "No"를 표시하고 싶습니다. 사실 저는 "Ja"/ "Nej"(덴마크어)를 원합니다.

이것이 가능한가?

<asp:gridview id="GridView1" runat="server" autogeneratecolumns="false">
    <columns>
        ...
        <asp:boundfield headertext="Active" datafield="Active" dataformatstring="{0:Yes/No}" />
        ...
    </columns>
</asp:gridview>

VB에이 코드를 사용합니다.

<asp:TemplateField HeaderText="Active" SortExpression="Active">
    <ItemTemplate><%#IIf(Boolean.Parse(Eval("Active").ToString()), "Yes", "No")%></ItemTemplate>
</asp:TemplateField>

그리고 이것은 C #에서 작동합니다 (예상되지 않음).

<asp:TemplateField HeaderText="Active" SortExpression="Active">
    <ItemTemplate><%# (Boolean.Parse(Eval("Active").ToString())) ? "Yes" : "No" %></ItemTemplate>
</asp:TemplateField>

다음과 같이 페이지 클래스에 메소드를 추가하십시오.

public string YesNo(bool active) 
{
  return active ? "Yes" : "No";
}

그런 다음 이 방법 TemplateFieldBind사용하여 다음을 수행하십시오 .

<%# YesNo(Active) %>

아니요-하지만 템플릿 열을 사용할 수 있습니다.

<script runat="server">
  TResult Eval<T, TResult>(string field, Func<T, TResult> converter) {
     object o = DataBinder.Eval(Container.DataItem, field);
     if (converter == null) {
        return (TResult)o;
     }
     return converter((T)o);
  }
</script>

<asp:TemplateField>
  <ItemTemplate>
     <%# Eval<bool, string>("Active", b => b ? "Yes" : "No") %>
  </ItemTemplate>
</asp:TemplateField>

Mixin을 사용할 수 있습니다.

/// <summary>
/// Adds "mixins" to the Boolean class.
/// </summary>
public static class BooleanMixins
{
    /// <summary>
    /// Converts the value of this instance to its equivalent string representation (either "Yes" or "No").
    /// </summary>
    /// <param name="boolean"></param>
    /// <returns>string</returns>
    public static string ToYesNoString(this Boolean boolean)
    {
        return boolean ? "Yes" : "No";
    }
}

또는 ItemDataBound코드 뒤에 있는 이벤트를 사용할 수 있습니다 .


클라이언트의 db 스키마가 nullable 비트 (즉, True / False / NULL 허용)라는 점을 제외하면 원본 포스터와 동일한 요구 사항이있었습니다. 다음은 Yes / No를 표시하고 잠재적 인 null을 처리하기 위해 작성한 코드입니다.

코드 숨김 :

public string ConvertNullableBoolToYesNo(object pBool)
{
    if (pBool != null)
    {
        return (bool)pBool ? "Yes" : "No";
    }
    else
    {
        return "No";
    }
}

프런트 엔드 :

<%# ConvertNullableBoolToYesNo(Eval("YOUR_FIELD"))%>

This is how I've always done it:

<ItemTemplate>
  <%# Boolean.Parse(Eval("Active").ToString()) ? "Yes" : "No" %>
</ItemTemplate>

Hope that helps.


This works:

Protected Sub grid_RowDataBound(sender As Object, e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles grid.RowDataBound
    If e.Row.RowType = DataControlRowType.DataRow Then
        If e.Row.Cells(3).Text = "True" Then
            e.Row.Cells(3).Text = "Si"
        Else
            e.Row.Cells(3).Text = "No"
        End If
    End If
End Sub

Where cells(3) is the column of the column that has the boolean field.


It's easy with Format()-Function

Format(aBoolean, "YES/NO")

Please find details here: https://msdn.microsoft.com/en-us/library/aa241719(v=vs.60).aspx

참고URL : https://stackoverflow.com/questions/216833/can-i-convert-a-boolean-to-yes-no-in-a-asp-net-gridview

반응형