A
Alphapage
Hello,
I have a dll that I want to share between Asp.Net and Windows Form.
The dll code is something like this:
public List<string> list;
public void Init()
{
list=new List<string>();
}
My Asp.net website initializes the generic list on page load, and when I
click the button on my webpage, I add a new string to the list
(list.Add("test")). No problem.
Now, from my Windows Form app I use a foreach to display all the string in
the list and here comes the problem.
I can't access the list that was running by my asp.net website from my
Windows form app.
How can I share that between Asp.Net and Windows Form ?
Thanks in advance for your help.
I have a dll that I want to share between Asp.Net and Windows Form.
The dll code is something like this:
public List<string> list;
public void Init()
{
list=new List<string>();
}
My Asp.net website initializes the generic list on page load, and when I
click the button on my webpage, I add a new string to the list
(list.Add("test")). No problem.
Now, from my Windows Form app I use a foreach to display all the string in
the list and here comes the problem.
I can't access the list that was running by my asp.net website from my
Windows form app.
How can I share that between Asp.Net and Windows Form ?
Thanks in advance for your help.