views:

184

answers:

5

Is there any firefox addon which can display my asp.net page viewstate size.... Any suggestion...

+5  A: 

Yes, google shows Firefox Viewstate Size

David_001
+1 for the link
citronas
A: 

Try this

hallie
+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
+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