I am developing an online bug tracking system in asp.net.IT is implemented now in our office,at a time around 10-15 peoples are using.Web application is hosted in a local machine(core 2duo-1 gb ram).My problem is when some user submit a bug his session is expiring and redirecting to home page.my code is
-----------------------------------------------------------------------------------------------------------------
protected void Page_Load(objec t sender, System.EventArg s e)
{
if ((string)Sessio n["User"] == null)
{
Response.Redire ct("LoginHome.a spx");
}
if (!Page.IsPostBa ck)
{
//some code getting value from db as dataset and storing the dataset in user //session
Session["userBug"] =(DataSet)dsFil ter;
}
-------------------------------------------------------------------------------
the dataset has 25 colums and more than 300 records.how much data we can store in session object.i'm using inproc session and time out is 20min
RENJUCOOL
RENJUR
www.renjur.co.n r
-----------------------------------------------------------------------------------------------------------------
protected void Page_Load(objec t sender, System.EventArg s e)
{
if ((string)Sessio n["User"] == null)
{
Response.Redire ct("LoginHome.a spx");
}
if (!Page.IsPostBa ck)
{
//some code getting value from db as dataset and storing the dataset in user //session
Session["userBug"] =(DataSet)dsFil ter;
}
-------------------------------------------------------------------------------
the dataset has 25 colums and more than 300 records.how much data we can store in session object.i'm using inproc session and time out is 20min
RENJUCOOL
RENJUR
www.renjur.co.n r
Comment