The issue never ends lol.......... so I am having this problem with google chrome now.

See in my page load, I have
Session["CheckRefresh"] = Server.UrlDecode(DateTime.Now.ToString());

Then in page_render:
ViewState["CheckRefresh"] = Session["CheckRefresh"].ToString();

In my dropdownlist set to autopostback(), I checked
if (Session["CheckRefresh"].ToString() == ViewState["CheckRefresh"].ToString()) then do something

The problem is that, I put a response.write to print out those 2 values before checking that if statement, but the values are different on Google chrome. IE and firefox works just fine. What am I missing here?