Creating a Delayed Postback
Especially as the use of JQuery grows, there may be time when you'll want a postback to occur but not right away, especially if you want to animate something on the browser first.
Server Code: (VB, roll your own semicolons)
Protected PostBackStr As String
PostBackStr = Page.ClientScript.GetPostBackEventReference(Me, "MyCustomArgument")
Client Code:
setTimeout("<%= PostBackStr %>", 1000);