How can I force a postback and call a codebehind funktion from javascript?
I want to do something like this:
aspx-file
Codebehind c# fileCode:<script type="text/javascript">
function OnRowSelecting(sender, args)
{
ServerFunc();
}
</script>
Code:private void ServerFunc()
{
//…
}
