DataList: how to use??

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default DataList: how to use??

    I am having difficulity understanding just exactly how to use the DataList
    (may be using it in the wrong context)

    Problem: I have a dataset that has several long text lines. It displays in
    a Datagrid but looks terrible. (I know the data connections, etc. are
    working ok, and I have a valid dataset available.

    I want to control the display of the data in a format like

    Name
    Address
    City

    Name
    Address
    City

    Name
    Address
    City

    .....etc.

    I looked to me that the DataList was a good way to go

    So I put a DataList onto the document
    Connected up the datasource
    Went to the template edit
    Added a TextField to the Item template
    Ran the form

    Ugh---- A copy of the text field for each record (25 copies) , but populated
    with the first record's data ------

    Obviously I'm missing a basic concept here. Review of the various MS papers
    (re Data Binding in Web Forms has not been enlightening :<

    Using the design tools how do I set this monster up to show the data in the
    format I want, or is there a better mousetrap (widget to use to accomplish
    this)?

    Thanks,

    Ed Warren



    Ed Warren Guest

  2. Similar Questions and Discussions

    1. DataList with linkbuttons
      Can anyone help? I have a DataList with 5 LinkButtons and for some reason my Item_Command event does not get triggered. My code is as follows: ...
    2. Datagrid vs Datalist
      Can anyone point me to some articles that discuss the reasons for using a datagrid over a datalist and vice-versa?
    3. datalist please help soon
      H data I'm binding to the DataList is information about products in my product database. Perhaps passed in the QueryString to this page is a...
    4. ASP:DATALIST
      Hello, Does anyone know of a way to prevent the asp:datalist control from creating html code table and table row tags when it is rendered. I...
    5. ASP DataList
      Hello, I have an ASP Datalist in which I am binding a value within the <itemtemplate> section as follows: <%#...
  3. #2

    Default Re: DataList: how to use??

    Never mind, after a few more hours looking around I found I needed to link
    the data to the container not the dataset.
    Learning via the bump, bounce method sometimes hurts.

    Now it is working great, sometimes it is the simple conceptual problems that
    get me.

    Ed Warren


    "Ed Warren" <eowarren@alltel.net> wrote in message
    news:uFilThv1DHA.1740@TK2MSFTNGP12.phx.gbl...
    > I am having difficulity understanding just exactly how to use the DataList
    > (may be using it in the wrong context)
    >
    > Problem: I have a dataset that has several long text lines. It displays
    in
    > a Datagrid but looks terrible. (I know the data connections, etc. are
    > working ok, and I have a valid dataset available.
    >
    > I want to control the display of the data in a format like
    >
    > Name
    > Address
    > City
    >
    > Name
    > Address
    > City
    >
    > Name
    > Address
    > City
    >
    > ....etc.
    >
    > I looked to me that the DataList was a good way to go
    >
    > So I put a DataList onto the document
    > Connected up the datasource
    > Went to the template edit
    > Added a TextField to the Item template
    > Ran the form
    >
    > Ugh---- A copy of the text field for each record (25 copies) , but
    populated
    > with the first record's data ------
    >
    > Obviously I'm missing a basic concept here. Review of the various MS
    papers
    > (re Data Binding in Web Forms has not been enlightening :<
    >
    > Using the design tools how do I set this monster up to show the data in
    the
    > format I want, or is there a better mousetrap (widget to use to accomplish
    > this)?
    >
    > Thanks,
    >
    > Ed Warren
    >
    >
    >

    Ed Warren 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