Put data to DataGrid in memory

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

  1. #1

    Default Put data to DataGrid in memory

    Can I add some data to data grid control on the fly by not connecting to
    database ?

    I mean I need to put data to data grid control on the memory, I need to use
    it ro manage page such as next and previous.

    Any part of some code will be appreicated.


    Sara T. Guest

  2. Similar Questions and Discussions

    1. How Do I Load Data to Flash from memory
      Hi, I'm trying to load an XML Recordset into Flash from virtual memory, and am lost. I'm not very good with flash, but I need to get...
    2. memory and storing references to data structures
      I want to hold data from structures in another array, modify the external structures so that the array still refelects the changes: I've done as...
    3. Newbie : Moving data from datagrid to datagrid
      Hello, I have a dataset1, inside a table1 and a dataview1. I have a datagrid1 with datasource the dataview1. I have another datagrid2. I want,...
    4. retaining data in memory
      Also sprach anonymous@coolgroups.com: You didn't tell us on which platform this is supposed to run so I conveniently assume one with the...
  3. #2

    Default Put data to DataGrid in memory

    Hi

    One of the most important factors in building high-
    performance, scalable Web applications is the ability to
    store items, whether data objects, pages, or parts of a
    page, in memory the initial time they are requested. You
    can store these items on the Web server or other software
    in the request stream, such as the proxy server or
    browser. This allows you to avoid recreating information
    that satisfied a previous request, particularly
    information that demands significant processor time or
    other resources. Known as caching, it allows you to use a
    number of techniques to store page output or application
    data across HTTP requests and reuse it. Thus, the server
    does not have to recreate information, saving time and
    resources.

    ASP.NET provides two types of caching that you can use to
    create high-performance Web applications. The first is
    called output caching, which allows you to store dynamic
    page and user control responses on any HTTP 1.1 cache-
    capable device in the output stream, from the originating
    server to the requesting browser. On subsequent requests,
    the page or user control code is not executed; the cached
    output is used to satisfy the request. The second type of
    caching is traditional application data caching, which
    you can use to programmatically store arbitrary objects,
    such as data sets, to server memory so that your
    application can save the time and resources it takes to
    recreate them.



    HTH
    Ravikanth

    >-----Original Message-----
    >Can I add some data to data grid control on the fly by
    not connecting to
    >database ?
    >
    >I mean I need to put data to data grid control on the
    memory, I need to use
    >it ro manage page such as next and previous.
    >
    >Any part of some code will be appreicated.
    >
    >
    >.
    >
    Ravikanth[MVP] Guest

  4. #3

    Default Re: Put data to DataGrid in memory

    Nope!

    I didn't mean to the cache. I mean to use data grid control for access data
    in memory. Because of easy to manage user interface in web application such
    as next page or previous page. And my data is not too much, around 200
    records, which now I use list box control to manage but it doesn't look
    elegant.

    "Ravikanth[MVP]" <dvravikanth@hotmail.com> wrote in message
    news:0d2601c35124$64738270$a401280a@phx.gbl...
    > Hi
    >
    > One of the most important factors in building high-
    > performance, scalable Web applications is the ability to
    > store items, whether data objects, pages, or parts of a
    > page, in memory the initial time they are requested. You
    > can store these items on the Web server or other software
    > in the request stream, such as the proxy server or
    > browser. This allows you to avoid recreating information
    > that satisfied a previous request, particularly
    > information that demands significant processor time or
    > other resources. Known as caching, it allows you to use a
    > number of techniques to store page output or application
    > data across HTTP requests and reuse it. Thus, the server
    > does not have to recreate information, saving time and
    > resources.
    >
    > ASP.NET provides two types of caching that you can use to
    > create high-performance Web applications. The first is
    > called output caching, which allows you to store dynamic
    > page and user control responses on any HTTP 1.1 cache-
    > capable device in the output stream, from the originating
    > server to the requesting browser. On subsequent requests,
    > the page or user control code is not executed; the cached
    > output is used to satisfy the request. The second type of
    > caching is traditional application data caching, which
    > you can use to programmatically store arbitrary objects,
    > such as data sets, to server memory so that your
    > application can save the time and resources it takes to
    > recreate them.
    >
    >
    >
    > HTH
    > Ravikanth
    >


    Sara T. 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