How do I cause a Postback?

asp.net, c#

Solution

From the comments it looks like you are using telerik's RadTabs. You could potentially set AutoPostBack to true on the tab control so that it would force a refresh whenever the user switches tabs.

http://www.telerik.com/help/aspnet/tabstrip/tab_server-side%20events.html

Problem

I need to cause a postback in c#, how can i do this? (It can not be through a button or any other element) Just want to cause a postback if a condition is met. something like ``` If(so and so) Postback now! else Do not post back ```

Original source