473,626 Members | 3,675 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Navigate in popup window

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
Nov 20 '05 #1
6 1384
Ruca,

Look at the System.Web.Cach ing namespace. This link should help.

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

HTH,

Raymond Lewallen

"ruca" <ru***@iol.pt > wrote in message
news:OO******** ******@TK2MSFTN GP10.phx.gbl...
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

Nov 20 '05 #2
Ruca,

Look at the System.Web.Cach ing namespace. This link should help.

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

HTH,

Raymond Lewallen

"ruca" <ru***@iol.pt > wrote in message
news:OO******** ******@TK2MSFTN GP10.phx.gbl...
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

Nov 20 '05 #3
Cor
Hi Raymond,
Can I pass a DataSet from one page (parent) to another (child, popup
window)?
How can I do that?
Look at the System.Web.Cach ing namespace. This link should help.


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
Nov 20 '05 #4
Cor
Hi Raymond,
Can I pass a DataSet from one page (parent) to another (child, popup
window)?
How can I do that?
Look at the System.Web.Cach ing namespace. This link should help.


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
Nov 20 '05 #5
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.Cach ing.
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" <no*@non.com> wrote in message
news:uc******** ******@tk2msftn gp13.phx.gbl...
Hi Raymond,
Can I pass a DataSet from one page (parent) to another (child, popup
window)?
How can I do that?

Look at the System.Web.Cach ing namespace. This link should help.


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

Nov 20 '05 #6
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.Cach ing.
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" <no*@non.com> wrote in message
news:uc******** ******@tk2msftn gp13.phx.gbl...
Hi Raymond,
Can I pass a DataSet from one page (parent) to another (child, popup
window)?
How can I do that?

Look at the System.Web.Cach ing namespace. This link should help.


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

Nov 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
18301
by: Noozer | last post by:
When using the WebBrowser control, is it possible to cause popup windows to appear within the WebBrowser control itself instead of a new window? This is what I've written in the NewWindow2 event, but I can't figure out how to get the popup to appear in the same browser window. In this code the user is presented with "Yes", "No" or "Cancel". Yes allows the popup to spawn a window, No should load the popup in the same window and Cancel...
5
5079
by: Nicola Pedrozzi | last post by:
Here I really need a guru... ;^( I found out today with a big disappointment that : window.open("url", ...) and also navigate("url") limit the max length of the url string to something like 2080 characters. That on Explorer only; Netscape and Mozilla work perfectly
5
18208
by: skipc | last post by:
Hi, I am stuck... I've got a popup window that displays a list in table format with links on the bottom to navigate the list <prev> 1 2 3 ... <next> When I demo'd to the users... they immediately asked if they could use the arrow keys and enter key to navigate the list. I think there must be a way to do this, but I can't figure it out.
3
1970
by: ruca | last post by:
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
7
3660
by: anthony.turcotte | last post by:
Hi, I've looked for a solution to this problem on google, read posts in this newsgroup and I still haven't found anything that could help me. Here's the scenario. 1. User accesses pageA.html 2. User clicks on menu link to open popup.html 3. pageA.html checks if popup.html is already open. It is not, open
2
2518
by: ari | last post by:
I have a vb.net program that uses the web browser for display purposes. I have implemented a type of "tooltip" pop up window that works as follows: in the html I have defined: &lt;SPAN id="1" _tip="" onmouseover="hover(this,'1')" onmouseout="hoveroff(this,'1')" &lt;/SPAN>
0
8196
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8705
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8637
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8364
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8504
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7193
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5574
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
1808
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1511
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.