Click here to Skip to main content
15,891,136 members

Call an external WCF service with Auto Complete Extender in ASP.Net

avi10788 asked:

Open original thread
Hi All,

I was facing a problem to call an external wcf service method for the ajax auto complete extender in asp.net. I just got a solution so sharing with you guys.

Problem: An external WCF service provide the list of Employee. Want to use auto complete extender text box to just enter initials of name of Employee and full Employee name will display.

Solution: Take a Text box ,AutoCompleteExtender and a hidden field(if you need to store the Employee code in database).

In aspx.cs: Create an [Web Method] in the file to call the external wcf service to retrive the list of Employee.
use CreateAutoComplete method of AutoCompleteExtender to get the data in desired format.
Exa: string employee = AutoCompleteExtender.CreateAutoCompleteItem(string.Format("{0} {1}", employee.FirstName, employee.LastName), employee.EmployeeCode)
and Return employee for the WebMethod.

In aspx: Assign the attribute of AutoCompleteExtender as below:

ServiceMethod="[WebMethodName]" ServicePath="path of aspx page which contain WebMethod" TargetControlID="id of Textbox" OnClientItemSelected="call a javascript method to assign the employee code value to hidden field"(if required).

In your external wcf service you can call a store procedure which takes PreFixText as input and return the List of employee who have prefixtext in their full names.

Thanks,
Avinash Srivastava
Tags: ASP.NET4.0

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900