I want to expose an ArrayList defined in Global.asax to all sessions. Here is some code from Global.asax and Default.aspx:
public class Global : System.Web.HttpApplication
{
public ArrayList userNameList = new ArrayList();
protected void Application_Start(object sender, EventArgs e)
{
}
protected void Session_Start(object sender, EventArgs e)
{
}
}
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Global global = new Global();
User user = new User();
user.username = TextBox1.Text;
global.userNameList.Add(user);
if (global.userNameList.Count != 0)
{
foreach (User u in global.userNameList)
{
ListBox1.Items.Add(String.Format(u.username));
}
}
}
}
Please, tell me what I'm doing wrong. Thanks :)
The first thing you're doing wrong is trying to instantiate the Global class in a page. That is not going to work as you expect.
If you want to share an ArrayList (or anything else) amongst all sessions, you should probably use Application state instead: -
http://msdn.microsoft.com/en-us/library/ms178594(v=vs.100).aspx
You should also read up on synchronizing access to shared state as there may be potential threading issues, depending on what you're doing.