How to use Autocomplete TextBox in .net 2.0 without webservice?
-
Hi, I am using .net 2.0. I want to use Autocomplete TextBox in my project. Why it is necessary to use webservice in Autocomplete TextBox? Is there any way to use Autocomplete TextBox without webservice? Please refer me some useful sites to learn about webservice. Thanks.
-
Hi, I am using .net 2.0. I want to use Autocomplete TextBox in my project. Why it is necessary to use webservice in Autocomplete TextBox? Is there any way to use Autocomplete TextBox without webservice? Please refer me some useful sites to learn about webservice. Thanks.
-
Hi, I am using .net 2.0. I want to use Autocomplete TextBox in my project. Why it is necessary to use webservice in Autocomplete TextBox? Is there any way to use Autocomplete TextBox without webservice? Please refer me some useful sites to learn about webservice. Thanks.
kandalu wrote:
Why it is necessary to use webservice in Autocomplete TextBox?
I dont think so it is necessary.
kandalu wrote:
Is there any way to use Autocomplete TextBox without webservice?
Purpose of Web Services is diiferent. we can use it as a layer and use in multiple application . Go thorugh Google to learn use of webservices.
kandalu wrote:
Is there any way to use Autocomplete TextBox without webservice?
Use Simply AJAX
kandalu wrote:
Please refer me some useful sites to learn about webservice.
W3School, CodeProject.com
cheers, Abhijit
-
http://www.codeproject.com/KB/custom-controls/AJAXWasHere-Part3.aspx[^]
Ahsan Ullah Senior Software Engineer
-
kandalu wrote:
Why it is necessary to use webservice in Autocomplete TextBox?
I dont think so it is necessary.
kandalu wrote:
Is there any way to use Autocomplete TextBox without webservice?
Purpose of Web Services is diiferent. we can use it as a layer and use in multiple application . Go thorugh Google to learn use of webservices.
kandalu wrote:
Is there any way to use Autocomplete TextBox without webservice?
Use Simply AJAX
kandalu wrote:
Please refer me some useful sites to learn about webservice.
W3School, CodeProject.com
cheers, Abhijit
-
Hi, I am using .net 2.0. I want to use Autocomplete TextBox in my project. Why it is necessary to use webservice in Autocomplete TextBox? Is there any way to use Autocomplete TextBox without webservice? Please refer me some useful sites to learn about webservice. Thanks.
Webservice is not needed. If you haven't specified the webservice path,
AutocompleteTextBox
will pick the method from page. See what documentation says ServicePath - The path to the web service that the extender will pull the word\sentence completions from. If this is not provided, the service method should be a page method.Navaneeth How to use google | Ask smart questions
-
Webservice is not needed. If you haven't specified the webservice path,
AutocompleteTextBox
will pick the method from page. See what documentation says ServicePath - The path to the web service that the extender will pull the word\sentence completions from. If this is not provided, the service method should be a page method.Navaneeth How to use google | Ask smart questions
Hi, If I use a Function in .cs file that function is not called. If I use the same method using webservice it works well. The code is given below :
<ajaxToolkit:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" MinimumPrefixLength="1"
ServiceMethod="GetRegC" TargetControlID="TextBox1">The "GetRegC" is coded as a function in the default.cs file. I don't know how to specify that function. So, I am using webservice. Thanks.