njtz2011 Posted August 14, 2011 Posted August 14, 2011 I Dynamic write a href on clientside page like "'<a href="#" onclick="ajaxRequest(null, 'testvalue', [''param0=A'',''param1=B''])">Test</a>'",when i click the href,on serverside how to catch the ajaxevent? Quote
Administrators Farshad Mohajeri Posted August 15, 2011 Administrators Posted August 15, 2011 In ajaxRequest first parameter can not be null. You must provide an instance of an existing object. Try this: ajaxRequest(MainForm.form, "testvalue", ["param0=A","param1=B"]) on server side monitor AjaxEvent of MainForm. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.