views:

92

answers:

2

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
A: 

Can you be little more clear. Can you copy the controller code here?

MAM
The AutoCompleteExtender requires a WebMethod with specifically-named parameters. Instead, I wanted an action from my controller to serve this purpose.
Prakash