Help redirecting to another tab

Help redirecting to another tab

Hello. Jquery is awesome but i got one challenge here.
I have a page(main.aspx)with several tabs on which load other pages like this
<li><a href="default2.aspx"><span>Bolig Info</span></a></li>
<li><a href="gridTest.aspx"><span>Bilder</span></a></li>
<li><a href="documents.aspx"><span>Dokumenter</span></a></li>
etc...

i have some sql work going on documents.aspx tab. After SQL work is done i need to refresh this tab. i have tryed in C# code behind to write like this
Response.Redirect("main.aspx?objid=17694725#ui-tabs-11");
but it just redirects me to first tab which is probably a default enabled tab.

main.aspx?objid=17694725#ui-tabs-11 is the url which status bar in IE shows when i am hovering my mouse on documents.aspx tab.

Can anyone please help?

Thanks in advance