Connecting Tech Pros Worldwide Help | Site Map

Navigate in popup window

ruca
Guest
 
Posts: n/a
#1: Nov 18 '05
Hi

Can I pass a DataSet from one page (parent) to another (child, popup
window)?
How can I do that?



--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca


Raymond Lewallen
Guest
 
Posts: n/a
#2: Nov 18 '05

re: Navigate in popup window


Ruca,

Look at the System.Web.Caching namespace. This link should help.

http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfSystemWebCaching.asp

HTH,

Raymond Lewallen

"ruca" <ruuca@iol.pt> wrote in message
news:OOzLcR#GEHA.4044@TK2MSFTNGP10.phx.gbl...[color=blue]
> Hi
>
> Can I pass a DataSet from one page (parent) to another (child, popup
> window)?
> How can I do that?
>
>
>
> --
> Programming ASP.NET with VB.NET
> Thank's (if you try to help me)
> Hope this help you (if I try to help you)
> ruca
>
>[/color]


Cor
Guest
 
Posts: n/a
#3: Nov 18 '05

re: Navigate in popup window


Hi Raymond,
[color=blue][color=green]
>> Can I pass a DataSet from one page (parent) to another (child, popup
>> window)?
>> How can I do that?[/color][/color]
[color=blue]
>Look at the System.Web.Caching namespace. This link should help.[/color]

Are you sure of this, as far as I know is the caching namespace to share
frequently used data for all your clients. Let say by instance an article
list you loads one time a day and all pages from all clients can use that.

For sharing data between pages from one client is still the Session in my
opinion.

However maybe I am wrong in this?

Cor


Raymond Lewallen
Guest
 
Posts: n/a
#4: Nov 18 '05

re: Navigate in popup window


Cor,

I use a unique key name to identify the item in the system cache, usually
based on our unique applicationID or a sessionID combined with "DataSet" to
create a unique name. We have problems with sessions being lost in our
application and timeout errors connecting to our Sql Server SessionState
database, so caching is a better option for us.

Ruca,

Cor is correct. If this a dataset that is common data for all users of your
application, you definately should be using the System.Web.Caching.
However, if the data is unique to each client accessing your application,
you can use sessionstate. I still use caching instead of session state due
to session problems we have. I use a unique key name to identify the
dataset for the unique client.

Check both caching and sessions and see which options will work the best for
you. Chances are you will end up using both solutions somewhere along the
way. :)

HTH,

Raymond Lewallen


"Cor" <non@non.com> wrote in message
news:uc7uYn#GEHA.2392@tk2msftngp13.phx.gbl...[color=blue]
> Hi Raymond,
>[color=green][color=darkred]
> >> Can I pass a DataSet from one page (parent) to another (child, popup
> >> window)?
> >> How can I do that?[/color][/color]
>[color=green]
> >Look at the System.Web.Caching namespace. This link should help.[/color]
>
> Are you sure of this, as far as I know is the caching namespace to share
> frequently used data for all your clients. Let say by instance an article
> list you loads one time a day and all pages from all clients can use that.
>
> For sharing data between pages from one client is still the Session in my
> opinion.
>
> However maybe I am wrong in this?
>
> Cor
>
>[/color]


Closed Thread


Similar ASP.NET bytes