Response.Redirect(string.Format("myprofile.aspx?uid={0}&result=saved#main",user.UserID));
said code translates to
IE7 - myprofile.aspx?uid=933fdf8e-1be0-4bc2-a269-ac0b01ba4755&result=saved
FF- myprofile.aspx?uid=933fdf8e-1be0-4bc2-a269-ac0b01ba4755&result=saved#main
why does IE7 drop my anchor?
edit: I should mention I am using this in conjunction with jQuery UI's tab control. I want the postback to tab into a specific tab.