Is there any firefox addon which can display my asp.net page viewstate size.... Any suggestion...
+1 for the link
citronas
2010-03-10 08:33:33
+1
A:
Perhaps this won't work in your situation but have you tried just enabling tracing on the page in question?
http://msdn.microsoft.com/en-us/library/94c55d08(VS.71).aspx
Spencer Ruport
2010-03-10 07:45:53
+1
A:
Alternative to work in any browser is to show view state size on the window.status bar, this saves you having to open refresh any external windows.
For example on my base page I do this:-
protected override void OnPreRender(System.EventArgs e)
{
#if DEBUG
ClientScript.RegisterStartupScript(typeof(string), "ViewStateSize", "<script language='javascript'>window.status='ViewState size: ' + document.forms[0].__VIEWSTATE.value.length;</script>" );
#endif
base.OnPreRender(e);
}
Rippo
2010-03-10 07:49:11