简体   繁体   中英

Not Calling Success Function After Returning Values from PageMethods With Multiple Parameters C#

I am trying to call my OnSuccess function but it didn't call it in the server.

My Code:

function Get_Data(option , text){
 //returns 'data', 'data', --not call OnSuccess-- 
 PageMethods.BindSeries(option,text,OnSuccess); 
}

function OnSuccess(Response){//content-logic}

After checking everything, my codes are just fine. I tried to deploy my codes in different application server for testing purposes and it did worked fine when testing it. Now, we are checking on the possible pipeline issue why my code is not working in its UAT server. Possible that my codes is not published / compile properly through jenkins pipeline.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM