You're right, using static will make the array shared between all users.
You can create the array and store it in the user session:
public partial class KWPedidoPlantillaV2 : System.Web.UI.Page
{
private ArrayList fliawebsaved;
protected void Page_Load(object sender, EventArgs e)
{
fliawebsaved = Session["MyArray"] as ArrayList;
if (fliawebsaved == null)
{
fliawebsaved = new ArrayList();
Session["MyArray"] = fliawebsaved;
}
}
Gabriel Bogéa (
http://www.gbogea.com)
-----------------
Please
'Mark as Answer' the post(s) that helped you