R
Ronde
Hi all,
I am in a such situation that requires before Atlas do the
Partical/Atlas postback, a Client-Side JavaScript has to be executed
first, once the JavaScript execute successfully, the Partical/Atlas
postback should be fired.
I try to do like this in code behind,
protected void Page_Load(object sender, EventArgs e)
{
string test = GetPostBackEventReference(_buttonSubmit);
_buttonSubmit.Attributes.Add("onclick", "SomeJavaScript(this);
__doPostBack('_buttonSubmit', '');");
}
but it is not working as I expected. Any idea?
Thanks a lot.
Ronde
I am in a such situation that requires before Atlas do the
Partical/Atlas postback, a Client-Side JavaScript has to be executed
first, once the JavaScript execute successfully, the Partical/Atlas
postback should be fired.
I try to do like this in code behind,
protected void Page_Load(object sender, EventArgs e)
{
string test = GetPostBackEventReference(_buttonSubmit);
_buttonSubmit.Attributes.Add("onclick", "SomeJavaScript(this);
__doPostBack('_buttonSubmit', '');");
}
but it is not working as I expected. Any idea?
Thanks a lot.
Ronde