I have an app that pulls up an image for the given user ID. I have the image tag nested inside an update panel in an AJAX TabContainer control. I have the ImageUrl set to "~/ImageHandler.ashx" and the ImageHandler.ashx grabs the user's ID from the session variable userID.
My problem is this: When the first user is loaded the correct image is pulled, but subsequent users do not pull up a new image. The image from the first user remains. So it seems as though the imageUrl is set when the first user is loaded and not touched again. How can I get the image to update each time I pull up a new user?