473,387 Members | 1,673 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

class session variables

I finally got class session variables to work by putting the following in
global.asax in the session_start:
dim myDBComp as DBComp = new DBComp........
session("myDBComp") = myDBComp

In each aspx codebehind module I can define my object right after the class
definition as so:
dim myDBComp as DBComp

The problem I had was where to put the instantiation:
myDBComp = CType(session("myDBComp"), DBComp)

I can't put it up with the definition as the compiler wants only
declarations up there.
I can't put it in any of the methods because it loses scope outside the
methods.
I finally found that it works if I put in in initializecomponent()

But then it disappears if I make any changed to the UI in the aspx page.

Where is it supposed to go?
Thanks,
Dean
Nov 17 '05 #1
4 1649
The instantiation will last the object while the page object exists. Putting
it in page_init or page_load, will mean this variable is set until the page
finishes executing.

"Dean" <de*********@earthlink.net> wrote in message
news:ea**************@TK2MSFTNGP10.phx.gbl...
I finally got class session variables to work by putting the following in
global.asax in the session_start:
dim myDBComp as DBComp = new DBComp........
session("myDBComp") = myDBComp

In each aspx codebehind module I can define my object right after the class definition as so:
dim myDBComp as DBComp

The problem I had was where to put the instantiation:
myDBComp = CType(session("myDBComp"), DBComp)

I can't put it up with the definition as the compiler wants only
declarations up there.
I can't put it in any of the methods because it loses scope outside the
methods.
I finally found that it works if I put in in initializecomponent()

But then it disappears if I make any changed to the UI in the aspx page.

Where is it supposed to go?
Thanks,
Dean

Nov 17 '05 #2
Marina:
According to a test that I just ran, it went out of scope as soon as the
page_load event ended. Page_init is part of the "web form designer
generated code", in fact initializecomponent() is called from there so
manually entered code gets clobbered there just like code in initialize
component.

So, unless I have made a mistake in my test, question still stands.
thanks,
Dean

"Marina" <mz*******@hotmail.com> wrote in message
news:ui**************@tk2msftngp13.phx.gbl...
The instantiation will last the object while the page object exists. Putting it in page_init or page_load, will mean this variable is set until the page finishes executing.

"Dean" <de*********@earthlink.net> wrote in message
news:ea**************@TK2MSFTNGP10.phx.gbl...
I finally got class session variables to work by putting the following in global.asax in the session_start:
dim myDBComp as DBComp = new DBComp........
session("myDBComp") = myDBComp

In each aspx codebehind module I can define my object right after the

class
definition as so:
dim myDBComp as DBComp

The problem I had was where to put the instantiation:
myDBComp = CType(session("myDBComp"), DBComp)

I can't put it up with the definition as the compiler wants only
declarations up there.
I can't put it in any of the methods because it loses scope outside the
methods.
I finally found that it works if I put in in initializecomponent()

But then it disappears if I make any changed to the UI in the aspx page.

Where is it supposed to go?
Thanks,
Dean


Nov 17 '05 #3
If the variable is declared at the class level, and initialized in page_init
or page_load, it will stick around for the lifetime of the page - which is
just until it finishes executing and when the response is sent to the
browser.

If you are declaring the variable inside a method - then it will have only
the scope of the method. This is why it has to be a class level variable.
After that, you can initialize it where ever you want - and it will stay
around for the lifetime of the object.

I don't know what test you did, but this is how it works. You can put code
into page_init - initializecomponent is meant for designer generated code.
page_init is yours to customize, those people usually use page_load.
"Dean" <de*********@earthlink.net> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Marina:
According to a test that I just ran, it went out of scope as soon as the
page_load event ended. Page_init is part of the "web form designer
generated code", in fact initializecomponent() is called from there so
manually entered code gets clobbered there just like code in initialize
component.

So, unless I have made a mistake in my test, question still stands.
thanks,
Dean

"Marina" <mz*******@hotmail.com> wrote in message
news:ui**************@tk2msftngp13.phx.gbl...
The instantiation will last the object while the page object exists.

Putting
it in page_init or page_load, will mean this variable is set until the

page
finishes executing.

"Dean" <de*********@earthlink.net> wrote in message
news:ea**************@TK2MSFTNGP10.phx.gbl...
I finally got class session variables to work by putting the following in global.asax in the session_start:
dim myDBComp as DBComp = new DBComp........
session("myDBComp") = myDBComp

In each aspx codebehind module I can define my object right after the

class
definition as so:
dim myDBComp as DBComp

The problem I had was where to put the instantiation:
myDBComp = CType(session("myDBComp"), DBComp)

I can't put it up with the definition as the compiler wants only
declarations up there.
I can't put it in any of the methods because it loses scope outside the methods.
I finally found that it works if I put in in initializecomponent()

But then it disappears if I make any changed to the UI in the aspx page.
Where is it supposed to go?
Thanks,
Dean



Nov 17 '05 #4
There is deffinitely a difference in the life of a component depending if it
is initialized in Page_init or Page load:
I first declare my component at the class level of my page as follows:
Dim myDBProc As PhotoDBProcs

I then initialize it in the page_load as follows:

myDBProc = CType(Session("myDBProc"), PhotoDBProcs)

I use the component to build content and, at the end of the page_load it
response is sent to the browser.

One of the buttons gets pushed triggering an event on the page. In the
button event the component no longer exists.

When I initialize this component in InitializeComponent() (or page_init),
however, the component still exists when the button is pushed.

Your first paragraph on your response is technicaly true but that is not
sufficient for any real application that has many interactions on a page.

So, to get the necessary scope of life on this component, I need to
initialize it in InitializeComponent() and re insert it each time it gets
wiped out upon UI change.

"Marina" <mz*******@hotmail.com> wrote in message
news:Ok**************@TK2MSFTNGP12.phx.gbl...
If the variable is declared at the class level, and initialized in page_init or page_load, it will stick around for the lifetime of the page - which is
just until it finishes executing and when the response is sent to the
browser.

If you are declaring the variable inside a method - then it will have only
the scope of the method. This is why it has to be a class level variable.
After that, you can initialize it where ever you want - and it will stay
around for the lifetime of the object.

I don't know what test you did, but this is how it works. You can put code into page_init - initializecomponent is meant for designer generated code.
page_init is yours to customize, those people usually use page_load.
"Dean" <de*********@earthlink.net> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Marina:
According to a test that I just ran, it went out of scope as soon as the
page_load event ended. Page_init is part of the "web form designer
generated code", in fact initializecomponent() is called from there so
manually entered code gets clobbered there just like code in initialize
component.

So, unless I have made a mistake in my test, question still stands.
thanks,
Dean

"Marina" <mz*******@hotmail.com> wrote in message
news:ui**************@tk2msftngp13.phx.gbl...
The instantiation will last the object while the page object exists.

Putting
it in page_init or page_load, will mean this variable is set until the

page
finishes executing.

"Dean" <de*********@earthlink.net> wrote in message
news:ea**************@TK2MSFTNGP10.phx.gbl...
> I finally got class session variables to work by putting the following
in
> global.asax in the session_start:
> dim myDBComp as DBComp = new DBComp........
> session("myDBComp") = myDBComp
>
> In each aspx codebehind module I can define my object right after
the class
> definition as so:
> dim myDBComp as DBComp
>
> The problem I had was where to put the instantiation:
> myDBComp = CType(session("myDBComp"), DBComp)
>
> I can't put it up with the definition as the compiler wants only
> declarations up there.
> I can't put it in any of the methods because it loses scope outside

the > methods.
> I finally found that it works if I put in in initializecomponent()
>
> But then it disappears if I make any changed to the UI in the aspx page. >
> Where is it supposed to go?
> Thanks,
> Dean
>
>



Nov 17 '05 #5

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

Similar topics

2
by: Earl Teigrob | last post by:
I am programming ASP.NET using C#. I have been accessing static variables accross my entire application but now need to change some of the static variables that are session specific to instance...
1
by: Qingdong Z. | last post by:
Posted in asp.net newsgroup, no answer. Hope some experts can help me here 1. Does class shared variable share same feathers as ASP.NET application variable? 2. If it is, it may work better...
2
by: John Mullin | last post by:
We are having a problem which appears similar to a previous posting: http://groups.google.com/groups?hl=en&lr=&frame=right&th=d97f552e10f8c94c&seekm=OZw33z9EDHA.2312%40TK2MSFTNGP10.phx.gbl#link1 ...
1
by: Beren | last post by:
Hello With trial and error I'm attempting to create an extended identity to store some more data than just the Name, for example a Subscription and a LastSearchPerformed property... Is this a...
1
by: aliendolphin | last post by:
I'm having a strange problem possibly with Session variables for one user being accessed by another. I use a static utility class with static methods which get and set certain Session variables....
7
by: fisab | last post by:
I apologise in advance for such a basic question, but I'm hoping someone will take the time to answer my question. In my code I define a Dataset : Partial Class Default_aspx Dim dsExcel As...
12
by: Thomas Andersson | last post by:
Hi, How can I access a session variable within a Public Class? I have tried the below code, but I get a server error "Object reference not set to an instance of an object". ...
15
by: Joe Fallon | last post by:
I would like to know how you can figure out how much memory a given instance of a class is using. For example, if I load a collection class with 10 items it might use 1KB, and if I load it with...
4
by: Diffident | last post by:
Hi All, I am trying to perform a non-CPU bound operation in an asynchronous fashion using 'Thread' and a delegate. Basically, I am spawning a thread using ThreadStart and Thread. My non-CPU...
0
by: bharathreddy | last post by:
Here I will given an example on how to access the session, application and querystring variables in an .cs class file. Using System.Web.HttpContext class. 1) For accesing session variables :...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
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,...
0
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...

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.