How could I access the ViewState of the current page using HttpContext
I have a ViewStateUtil class that I'd need to implement:
public static T GetViewState<T>(ViewStateKey viewStateKey)
{
// how to implement it?! HttpContext.Current...?
}