Assuming Tools is my Controller, I specify '/Tools' in the ServicePath, and the action name 'GetToolsList' in the ServiceMethod. Can I fire an AutoCompleteExtender this way? How would I be able to pass the prefixText to the Action here? Or is it not possible?
A:
Did it. Created an action that returned void, and JSON-serialized the output and wrote it into the response object so that it's read and shown in an AutoCompleteExtender.
Prakash
2009-06-05 05:21:02
The AutoCompleteExtender requires a WebMethod with specifically-named parameters. Instead, I wanted an action from my controller to serve this purpose.
Prakash
2010-06-21 07:09:12