I would like to make a call to the underlying backend just one time when user first initiates a user session. While the session is up, the same call shall never be made again. Do I just create a singleton tied to the particular session or is there a better way to do this?
Share
You can place the method call in the global.asax Session_Start event.
List of available events is listed here.