Paging in ASP BEST APPROACH

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Paging in ASP BEST APPROACH

    HI,
    Guys
    There has been a lot of Ways to use paging in asp

    1>Recordset approach -where whole records are pulled at client side...
    and then only the records which are needed are filtered..
    and now that is not the approach good as we are pulling unnesscary all
    the 10,000 say for dispalying 100 records...if pagesize is 100

    2>i have seen is the Stored procedure approach where data is inserted
    in temp table and then only the records needed are pulled out...
    now again the approcah is not feasbile as if the data in the table is
    huge
    then inserting in temp table is going to bring Troubles...

    so both the approcaches are bottlenecks...
    so brillant guys..... which the best approcah to implement paging in
    asp...
    i have seen google paging seems to be runing very fast?

    so tell me which the best approcah to implement paging in asp

    regds,
    Navin Mahindroo
    Navin Guest

  2. Similar Questions and Discussions

    1. Flex2: General question on approach to paging data in the Grid component
      What is the best way/preferred approach to working with large recordsets (100 to 200 rows) for the DataGrid? Is there inherent support for paging...
    2. Best approach
      Hello! I have a form in which I am displaying a list of invoices. For each invoice, the user may split the invoice into multiple accounts. I...
    3. Help with approach...
      I could use a shove in the right direction... I'm using the Dreamweaver MX suite to build a website for my business. At first I threw something...
    4. Approach to tokenizing
      All, I'm working on something that requires a relatively easy to tokenize/parse data format. I've solved it in C, but I'm interested in how...
    5. Best paging approach to be used
      HI, Guys There has been a lot of Ways to use paging in asp 1>Recordset approach -where whole records are pulled at client side... and then only...
  3. #2

    Default Re: Paging in ASP BEST APPROACH

    > so tell me which the best approcah to implement paging in asp

    Here's a good article on recordset paging...
    [url]http://www.aspfaq.com/show.asp?id=2120[/url]

    RR


    Randy R Guest

  4. #3

    Default Re: Paging in ASP BEST APPROACH

    Please don't multi-post; I answered this in another group.


    Aaron Bertrand - 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