getting the list of all functions executed like call stack in asp.net

Posted by sridhar on Stack Overflow See other posts from Stack Overflow or by sridhar
Published on 2009-01-27T16:46:04Z Indexed on 2010/03/13 13:05 UTC
Read the original article Hit count: 357

Filed under:
|
|
|

Hi,

I am having trouble with debugging one of the problems that I am having in our website. This is the problem. I have a webpage that contains the photo of an employee and information related to the employee. When the user logins to our website, we are storing the details of the employee in session. I am setting the image url for the photo of an employee as follows.

imgEEPhoto.ImageUrl = imgPhoto.aspx?Company=XXXX&Empno=YYYY.

Inside the page imgPhoto.aspx, I am checking if the session is alive for that user. when I login to the page that has the employee photo sometimes the photo is not displayed. It is because I am checking whether the session is alive inside the imgPhoto.aspx page. sometimes the session is alive and sometimes the session is not alive. It looks like there is some function that is setting the session to null asynchronously. I am not knowing how to track that function. so I am thinking that inside the imgPhoto.aspx page, if I can get the list of all functions that have been executed so far, I could track the function that is resetting the session. Is there a way to find this?

If there is no another way to debug this problem, please let me know.

Thanks, sridhar.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about debugging