5

これは私が持っているものです。できます。しかし、もっと簡単で良い方法はありますか?

ASPX ページ…

<asp:Repeater ID="RepeaterBooks" runat="server">
    <HeaderTemplate>
        <table class="report">
            <tr>
                <th>Published</th>
                <th>Title</th>
                <th>Author</th>
                <th>Price</th>
            </tr>
    </HeaderTemplate>
    <ItemTemplate>
            <tr>
                <td><asp:Literal ID="LiteralPublished" runat="server" /></td>
                <td><asp:Literal ID="LiteralTitle" runat="server" /></td>
                <td><asp:Literal ID="LiteralAuthor" runat="server" /></td>
                <td><asp:Literal ID="LiteralPrice" runat="server" /></td>
            </tr>
    </ItemTemplate>
    <FooterTemplate>
        </table>
    </FooterTemplate>
</asp:Repeater>

ASPX.VB コード ビハインド…

Protected Sub Page_Load( ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim db As New BookstoreDataContext
    RepeaterBooks.DataSource = From b In db.Books _
                               Order By b.Published _
                               Select b
    RepeaterBooks.DataBind()
End Sub

Sub RepeaterBooks_ItemDataBound( ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles RepeaterBooks.ItemDataBound
    If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
        Dim b As Book = DirectCast(e.Item.DataItem, Book)
        DirectCast(e.Item.FindControl("LiteralPublished"), Literal).Text = "<nobr>" + b.Published.ToShortDateString + "</nobr>"
        DirectCast(e.Item.FindControl("LiteralTitle"), Literal).Text = "<nobr>" + TryNbsp(HttpContext.Current.Server.HtmlEncode(b.Title)) + "</nobr>"
        DirectCast(e.Item.FindControl("LiteralAuthor"), Literal).Text = "<nobr>" + TryNbsp(HttpContext.Current.Server.HtmlEncode(b.Author)) + "</nobr>"
        DirectCast(e.Item.FindControl("LiteralPrice"), Literal).Text = "<nobr>" + Format(b.Price, "c") + "</nobr>"
    End If
End Sub

Function TryNbsp(ByVal s As String) As String
    If s = "" Then
        Return "&nbsp;"
    Else
        Return s
    End If
End Function
4

8 に答える 8

4

@ジェフ

この種の Eval ステートメントは実際には 2.0 で追加されましたが、パフォーマンスが重要な場合は、Reflection を使用するため、Eval は避ける必要があります。

コードでテーブルを生成する方が速いかもしれませんが、リピーターはそれを行うための非常に良い方法です。

ASPX ページ:

<table class="report" id="bookTable" runat="server">
        <tr>
            <th>Published</th>
            <th>Title</th>
            <th>Author</th>
            <th>Price</th>
        </tr>
 </table>

コードビハインド:

Protected Sub Page_Load( ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Not Page.IsPostback Then
        BuildTable()
    End If
End Sub

Private Sub BuildTable()
    Dim db As New BookstoreDataContext
    Dim bookCollection = from b in db.Books _
                         Order By b.Published _
                         Select b
    Dim row As HtmlTableRow
    Dim cell As HtmlTableCell

    For Each book As Books In bookCollection
        row = New HtmlTableRow()
        cell = New HtmlTableCell With { .InnerText = b.Published.ToShortDateString }
        row.Controls.Add(cell)
        cell = New HtmlTableCell With { .InnerText = TryNbsp(HttpContext.Current.Server.HtmlEncode(b.Title)) }
        row.Controls.Add(cell)
        cell = New HtmlTableCell With { .InnerText = TryNbsp(HttpContext.Current.Server.HtmlEncode(b.Author))
        row.Controls.Add(cell)
        cell = New HtmlTableCell With { .InnerText = Format(b.Price, "c") }
        row.Controls.Add(cell)
        bookTable.Controls.Add(row)
    Next

速度がどれだけ重要かによると思います。簡単にするために、リピーターを使用すると思います。

于 2008-09-04T14:36:54.977 に答える
3

フレームワーク 3.5 で導入されたListViewコントロールは、もう少し優れたソリューションかもしれません。マークアップは次のようになります。

<asp:ListView runat="server" ID="ListView1"
    DataSourceID="SqlDataSource1">
  <LayoutTemplate>
    <table runat="server" id="table1" runat="server" >
      <tr runat="server" id="itemPlaceholder" ></tr>
    </table>
  </LayoutTemplate>
  <ItemTemplate>
    <tr runat="server">
      <td runat="server">
        <asp:Label ID="NameLabel" runat="server"
          Text='<%#Eval("Name") %>' />
      </td>
    </tr>
  </ItemTemplate>
</asp:ListView>

コード ビハインド クラスのパブリック プロパティまたはプライベート プロパティからデータ ソース ID を設定する必要があります。

于 2008-09-04T14:56:38.003 に答える
2

.Net 3.0 以降では、次のようにして ItemDataBound を asp:Literal に置き換えることができます。

<ItemTemplate>
            <tr>
                <td><%# Eval("published") %></td>
                ...

「published」は、リピーターにバインドしたデータ内のフィールドの名前です

編集: @ Alassek : リフレクションのパフォーマンスへの影響は、しばしば過度に強調されていると思います。アプリのパフォーマンスをベンチマークする必要があることは明らかですが、Eval のヒットはミリ秒単位で測定される可能性があります。アプリが多くの同時ヒットを処理していない限り、これはおそらく問題にはならず、Eval を使用したコードの単純さと、プレゼンテーションの適切な分離により、優れたソリューションになります。

于 2008-09-04T14:01:50.490 に答える
1

GridView(または古いバージョンのASP.NETを使用している場合はDataGrid)を使用します。

<asp:GridView ID="gvBooks" runat="server" AutoGenerateColumns="False">
    <Columns>
        <asp:BoundField HeaderText="Published" DataField="Published" />
        <asp:BoundField HeaderText="Title" DataField="Title" />                     
        <asp:BoundField HeaderText="Author" DataField="Author" />
        <asp:BoundField HeaderText="Price" DataField="Price" />
    </Columns>
</asp:GridView>

いくつかのコードビハインド:

Private Sub gvBooksRowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvBooks.RowDataBound
     Select Case e.Row.RowType
        Case DataControlRowType.DataRow

            ''' Your code here '''

     End Select
End Sub

同様の方法でバインドできます。RowDataBoundイベントが必要です。

于 2008-09-04T16:06:01.223 に答える
1

これが GridView の目的です。

<asp:GridView runat="server" DataSourceID="SqlDataSource1">
   <Columns>
      <asp:BoundField HeaderText="Published" DataField="Published" />
      <asp:BoundField HeaderText="Author" DataField="Author" />
   </Columns>
</asp:GridView>
于 2008-09-04T15:54:22.077 に答える
1

Geoff に同意します。私たちが使用するのは、データを使っLiteralsて何か違うことをしたい場合だけです。
たとえば、DueDateフィールドに実際の日付の代わりに「今日」または「昨日」と表示したい場合があります。

于 2008-09-04T14:04:41.920 に答える
0

ASP.NETで処理される編集機能が必要ない場合は、DataGridとGridViewから離れます...これらは不要な肥大化をもたらします。

于 2008-09-04T16:10:16.080 に答える
0

ALassek さんが書きました:

…コードでテーブルを生成…

私はそれの外観が好きです!タイプミスやフィールド名の変更が原因で実行時例外が発生する可能性は非常に低いようです。

于 2008-09-04T14:49:13.730 に答える