DataBinding with Array

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default DataBinding with Array

    I've got following problem:
    I need to present an Array of strings and want to Present it in an
    DataRepeater.
    the Code is like this (in C#):

    string[] NameList = SomeClass.GetNameList();
    MyRepeater.DataSource = NameList;

    Now I don't know, how I con declare the databinding, it should be something
    like this:

    <asp:repeater id="MyRepeater" runat="server">
    <ItemTemplate>
    .....
    <asp:Label Text='<%# DataBinder.Eval(Container.DataItem, ???? ) %>
    />
    ......
    </ItemTemplate>
    ......
    </asp:repeater>

    Thanks
    cn


    Christof Nordiek Guest

  2. Similar Questions and Discussions

    1. Combobox databinding
      Any ideas on this problem I'm having. I've got a combobox and trying to bind data. The combobox looks like: <mx:ComboBox y="25"...
    2. databinding
      have two Dropdownlist and one which is containing States and one containing Cities. I know how to do all the little databinding task in visual...
    3. Databinding array of custom classes to DataGrid
      I can't seem to bind an array of custom classes to my DataGrid. I get the following error "A field or property with the name 'dcAbbreviation' was...
    4. DataGrid Custom Column Error when DataBinding "does not contain a definition for 'DataBinding'"
      I am creating a custom column that inherits from DataColumnGrid. When I attempt Databind to a property of the custom column, I get the the error: ...
    5. MX2004 and databinding.
      Hi, I haven't really used Flash since version 5; it was slow to develop in, and I could create web apps much more quickly in HTML/CSS. How is the...
  3. #2

    Default Re: DataBinding with Array

    Try using just <%# Container.DataItem %>

    "Christof Nordiek" <cnordiek@amexus.com> wrote in message
    news:bds9ur$67q$04$1@news.t-online.com...
    > I've got following problem:
    > I need to present an Array of strings and want to Present it in an
    > DataRepeater.
    > the Code is like this (in C#):
    >
    > string[] NameList = SomeClass.GetNameList();
    > MyRepeater.DataSource = NameList;
    >
    > Now I don't know, how I con declare the databinding, it should be
    something
    > like this:
    >
    > <asp:repeater id="MyRepeater" runat="server">
    > <ItemTemplate>
    > .....
    > <asp:Label Text='<%# DataBinder.Eval(Container.DataItem, ???? )
    %>
    > />
    > ......
    > </ItemTemplate>
    > ......
    > </asp:repeater>
    >
    > Thanks
    > cn
    >
    >

    Marina Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139