You can, but should not, as this is considered bad practice. Views should not retrieve data. They must use the data transmitted from the controller. So in your controller, read the session, and then pass the value to the view for rendering. This rule can be easily broken using the Session property on the watch page:
<%= this.Session["someKey"] %>
source share