Is there any firefox addon which can display my asp.net page viewstate size.... Any suggestion...
Yes, google shows Firefox Viewstate Size
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
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);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With