Filling dataset with form data

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

  1. #1

    Default Filling dataset with form data

    I have a few textboxes to hold x, y, z dimensions and weight per item. The
    user may have different number of items so I will have one set of these
    textboxes with an add button. Upon click, I would like to show the data in a
    tabular form with proper headings for each of the items on the same page
    before finally submitting it to the DB. Is there any way I can use DataTable,
    DataGrid etc to show the data in a neat format?
    TIA
    learningNET Guest

  2. Similar Questions and Discussions

    1. DataSet not storing any data?
      Maybe I am a bit dense, but I have been trying to make this work all day and I can't get it to, so I would kindly request some assistance....
    2. Unspecified error when filling dataset?
      Hi everyone: What am I doing wrong?--- I'm going bonkers with this one... on the CustDA.Fill(custDS) line, I get an "Unspecified Error"... ...
    3. Serializer not filling data for custom objects
      Hi, this is probably a one-liner fix, but I can't find that one line! I have two webservices, UserWS and TroubleWS. UserWS has a method called...
    4. Duwamish Framework--Filling DataSet
      I'm trying to use the Duwamish 7.0 Framework to make a distributed application. I re-wrote parts of the application to work with Students...
    5. Formatting Data in Dataset.
      Can anyone give a sample code, tip, or a web link with an example of how to format data to currency. eg: $3451.25 I set a dataadapter and I fill...
  3. #2

    Default Re: Filling dataset with form data

    Hi,
    it's more a matter of design that related to webservice. Will your data be
    saved in a remote DB thru web svc? It's unclear. BTW, maybe you can use a
    DataGrid where rows are your items and columns your data, and a DataTable
    owning all them. Does it make sense?

    "learningNET" <learningNET@discussions.microsoft.com> ha scritto nel
    messaggio news:C18868C6-C005-4377-AD22-1A8898B5D2C3@microsoft.com...
    >I have a few textboxes to hold x, y, z dimensions and weight per item. The
    > user may have different number of items so I will have one set of these
    > textboxes with an add button. Upon click, I would like to show the data in
    > a
    > tabular form with proper headings for each of the items on the same page
    > before finally submitting it to the DB. Is there any way I can use
    > DataTable,
    > DataGrid etc to show the data in a neat format?
    > TIA

    Saverio Tedeschi Guest

  4. #3

    Default Re: Filling dataset with form data

    Yes. The data will eventually get submitted to a remote DB through web svc,
    but first I need all the data to be collected. There are 3 categories of
    items on one page with multiple items for each. I need to gather all the
    dimensions and weights once and show it in a datagrid format so if the user
    wants to remove an item, they can. That means after I add them, I need to be
    able to get to them one cell at a time.
    I searched the net for my question. I need to know:
    - how to use datagrid to send information to it.
    - how to retrieve it to submit it to the DB.
    learningNET Guest

  5. #4

    Default Re: Filling dataset with form data

    Once again, pls keep in mind this is "WebService" NG. Pls post your question
    in the appropriated one (I suggest compactframework), so we can avoid
    bothering other users. :-) Have a nice day.

    "learningNET" <learningNET@discussions.microsoft.com> ha scritto nel
    messaggio news:44BAB0CE-0BF3-48DA-9BAA-F0A9B28043AE@microsoft.com...
    > Yes. The data will eventually get submitted to a remote DB through web
    > svc,
    > but first I need all the data to be collected. There are 3 categories of
    > items on one page with multiple items for each. I need to gather all the
    > dimensions and weights once and show it in a datagrid format so if the
    > user
    > wants to remove an item, they can. That means after I add them, I need to
    > be
    > able to get to them one cell at a time.
    > I searched the net for my question. I need to know:
    > - how to use datagrid to send information to it.
    > - how to retrieve it to submit it to the DB.

    Saverio Tedeschi 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