I would like to trigger the onresize event from my C# code behind. I think this can be done with
Page.clientScript.RegisterScriptBlock(this.getType(), \"id\
use this $(window).resize(); (tested in FF, chrome, IE8)
$(window).resize();
// old answer, fails in FF document.body.onresize()
document.body.onresize()