C
ckkwan
[WebMethod]
public void Test(string Str)
for the WebMethod above, I am able to invoke using Ajax by:
WebService.asmx/Test?Str='something'
But in the case below:
[WebMethod]
public void Test(string Str, out string OutStr)
I tried to invoke using the similar string:
WebService.asmx/Test?Str='something'
But i failed. It seems like there is a need for me to assing the
OutStr, but again OutStr is not supose to to be set right?
So, how can I invoke the above WebMethod using Ajax?
Thanks in advance.
public void Test(string Str)
for the WebMethod above, I am able to invoke using Ajax by:
WebService.asmx/Test?Str='something'
But in the case below:
[WebMethod]
public void Test(string Str, out string OutStr)
I tried to invoke using the similar string:
WebService.asmx/Test?Str='something'
But i failed. It seems like there is a need for me to assing the
OutStr, but again OutStr is not supose to to be set right?
So, how can I invoke the above WebMethod using Ajax?
Thanks in advance.