How can I force a postback and call a codebehind funktion from javascript?
I want to do something like this:

aspx-file
Code:
<script type="text/javascript">
function OnRowSelecting(sender, args)   
{
    ServerFunc();
}
</script>
Codebehind c# file
Code:
private void ServerFunc()
{
    //… 
}