Pass through more then one argument with a Javascript .NET postback
Posted
by Ivo
on Stack Overflow
See other posts from Stack Overflow
or by Ivo
Published on 2010-05-25T08:55:16Z
Indexed on
2010/05/25
9:01 UTC
Read the original article
Hit count: 221
I have implemented the javascript function that allows me to do a .NET (4.0) postback
Javascript
_doPostBack('_Page', argument)
C#
public void RaisePostBackEvent(string eventArgument) { //something happens }
Is it possible to pass through more then one argument?
© Stack Overflow or respective owner