I've successfully integrated a JavaScript function that enables me to perform a .NET (4.0) postback
Javascript
__doPostBack('__Page', argument)
C#
public void RaisePostBackEvent(string eventArgument) { //some action takes place }
Can multiple arguments be passed through this method?