So I think I've checked a hundred different websites, and they all say to do this using some variation of the answer on this page.
http://www.4guysfromrolla.com/webtech/111500-1.shtml
The problem being...this just doesn't seem to work for IE8.
I've got this code at the beginning of my page, straight from the site.
<% Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
If Len(Session("FirstTimeToPage")) > 0 then
'The user has come back to this page after having visited
'it... wipe out the session variable and redirect them back
'to the login page
Session("FirstTimeToPage") = ""
Response.Redirect "AbandonSession.asp?url=ShopOrderList.asp?frommain=1"
Response.End
End If%>
But the browser never attempts to get new information from the server until I manually hit refresh.