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

  1. #1

    Default rowcount

    How can I get a count of rows in a datagrid?


    et Guest

  2. Similar Questions and Discussions

    1. .Recordsaffected or @@RowCount
      Is there a way in native ColdFusion, without going through a SQL Server stored procedure, to get the number of records affected by an UPDATE stmt?...
    2. CFOUTPUT QUERY rowcount = 0
      Hello, I have a query which return 0 row. I have a CFOUTPUT QUERY which try to output my query. Coldfudion enter in the CFOUTPUT once EVEN if my...
    3. @@rowcount in trigger
      Hi, I read in a book which suggested to check the @@rowncount inside the trigger if it is =0 then return if @@rowncount=0 Return I am wondering...
  3. #2

    Default Re: rowcount

    You may want to use:
    DataTable.Rows.Count

    Regards,
    Jack Li
    MVP (ASP.NET)

    "et" <eagletender2001@yahoo.com> wrote in message
    news:u12J3ExvFHA.596@TK2MSFTNGP12.phx.gbl...
    > How can I get a count of rows in a datagrid?
    >

    Jack Li Guest

  4. #3

    Default Re: rowcount

    datagrid.Items.Count


    HTH


    "et" <eagletender2001@yahoo.com> wrote in message
    news:u12J3ExvFHA.596@TK2MSFTNGP12.phx.gbl...
    > How can I get a count of rows in a datagrid?
    >
    >

    Elton Wang Guest

  5. #4

    Default Re: rowcount

    Jack Li wrote:
    > You may want to use:
    > DataTable.Rows.Count
    This assumes that you are binding a DataTable to a DataGrid. But if
    you're binding a DataReader this approach won't work. (If you're
    binding an Array or other collection, you can use similar code - just
    utilize the Count property.)

    A more flexible approach is, *after* you bind the data to the DataGrid,
    check out the DataGridID.Items.Count property.

    hth

    > Regards,
    > Jack Li
    > MVP (ASP.NET)
    >
    > "et" <eagletender2001@yahoo.com> wrote in message
    > news:u12J3ExvFHA.596@TK2MSFTNGP12.phx.gbl...
    >
    >>How can I get a count of rows in a datagrid?
    >>
    >
    >
    >

    --

    Scott Mitchell [ASP.NET MVP]
    [email]mitchell@4GuysFromRolla.com[/email]
    [url]http://www.4GuysFromRolla.com/ScottMitchell[/url]
    Scott Mitchell [MVP] 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