Gobal and Session Dataset

G

Guest

Hi,

How can I create a global and session dataset using in the web applicaton ?

I have defined in Global class without luck.

e.g.
public DataSet ds_applicaton;
public DataSet ds_session;

protected void Application_Start(object sender, EventArgs e)
{
ds_application = new DataSet();
..... do something ....
}

protected void Session_onStart(object sender, EventArgs e)
{
ds_session = new DataSet();
..... do something ....
}


Thanks
Wilson
 
M

Michael Nemtsev

Hello Wilson,

Use Cache or Session for this

W> Store information. not just several variables.
W>
W> "chanmm" wrote:
W>---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top