Ask a Question related to ASP.NET General, Design and Development.
-
Sara T. #1
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
-
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... -
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... -
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,... -
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... -
Ravikanth[MVP] #2
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
not connecting to>-----Original Message-----
>Can I add some data to data grid control on the fly bymemory, I need to use>database ?
>
>I mean I need to put data to data grid control on the>it ro manage page such as next and previous.
>
>Any part of some code will be appreicated.
>
>
>.
>Ravikanth[MVP] Guest
-
Sara T. #3
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



Reply With Quote

