Click here to Skip to main content
15,889,887 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Answertemp Pin
Ya Rasoolallah18-Dec-13 12:56
Ya Rasoolallah18-Dec-13 12:56 
SuggestionRe: temp Pin
Richard MacCutchan18-Dec-13 22:00
mveRichard MacCutchan18-Dec-13 22:00 
Questionauto complete with ajaxcontroltoolkit and ado.net Pin
Ya Rasoolallah18-Dec-13 12:01
Ya Rasoolallah18-Dec-13 12:01 
AnswerRe: auto complete with ajaxcontroltoolkit and ado.net Pin
thatraja18-Dec-13 13:39
professionalthatraja18-Dec-13 13:39 
GeneralRe: auto complete with ajaxcontroltoolkit and ado.net Pin
Ya Rasoolallah18-Dec-13 14:05
Ya Rasoolallah18-Dec-13 14:05 
GeneralRe: auto complete with ajaxcontroltoolkit and ado.net Pin
thatraja18-Dec-13 14:22
professionalthatraja18-Dec-13 14:22 
GeneralRe: auto complete with ajaxcontroltoolkit and ado.net Pin
Ya Rasoolallah19-Dec-13 6:10
Ya Rasoolallah19-Dec-13 6:10 
AnswerRe: auto complete with ajaxcontroltoolkit and ado.net Pin
joginder-banger25-Dec-13 15:36
professionaljoginder-banger25-Dec-13 15:36 
I have used many time auto complete Extender. I check out your code behind file.
C#
  [WebMethod]
    public static string[] City(string prefixText, int count, string contextKey)
    {


        DataTable dt = new DataTable();

        dt = Bal_BindingData._city(prefixText);
//_city is dataTable type function with the string type parameter.just add the String Contextkey in your GetCompletionList method.

        string[] movies = new string[dt.Rows.Count];
        for (int i = 0; i < dt.Rows.Count; i++)
        {
            movies[i] = dt.Rows[i]["City"].ToString();

        }


        return movies;
    }

i think you forgot string Contextkey Parameter in GetCompletionList method.
don't confused my with code i have used three tire technique. I hope your problem has been solved.
Laugh | :laugh: jsb
QuestionAre there any good "substitute" ASP.Net lessons for "C# for programmers 2e"? Pin
That New Guy18-Dec-13 10:47
That New Guy18-Dec-13 10:47 
AnswerRe: Are there any good "substitute" ASP.Net lessons for "C# for programmers 2e"? Pin
Rahul Rajat Singh19-Dec-13 18:23
professionalRahul Rajat Singh19-Dec-13 18:23 
AnswerRe: Are there any good "substitute" ASP.Net lessons for "C# for programmers 2e"? Pin
abdul subhan mohammed21-Dec-13 3:44
professionalabdul subhan mohammed21-Dec-13 3:44 
Questionpass a value from custom text box control to controller Pin
Member 1040952418-Dec-13 10:01
Member 1040952418-Dec-13 10:01 
QuestionComplex UriTemplate for WCF Pin
Siva Kumar Balaguru 18-Dec-13 0:16
Siva Kumar Balaguru 18-Dec-13 0:16 
AnswerRe: Complex UriTemplate for WCF Pin
Rahul Rajat Singh19-Dec-13 18:21
professionalRahul Rajat Singh19-Dec-13 18:21 
QuestionI want column wise gridview paging Pin
Member 1006079517-Dec-13 21:04
Member 1006079517-Dec-13 21:04 
AnswerRe: I want column wise gridview paging Pin
thatraja17-Dec-13 23:25
professionalthatraja17-Dec-13 23:25 
GeneralRe: I want column wise gridview paging Pin
Snehasish_Nandy18-Dec-13 1:37
professionalSnehasish_Nandy18-Dec-13 1:37 
GeneralRe: I want column wise gridview paging Pin
thatraja18-Dec-13 2:05
professionalthatraja18-Dec-13 2:05 
AnswerRe: I want column wise gridview paging Pin
joginder-banger25-Dec-13 15:41
professionaljoginder-banger25-Dec-13 15:41 
QuestionNew Pin
tsunamigang17-Dec-13 17:27
tsunamigang17-Dec-13 17:27 
AnswerRe: New Pin
thatraja17-Dec-13 23:35
professionalthatraja17-Dec-13 23:35 
QuestionUsing gridview onrowcommand on saving and displaying the data? Pin
Member 840570017-Dec-13 1:38
Member 840570017-Dec-13 1:38 
AnswerRe: Using gridview onrowcommand on saving and displaying the data? Pin
Tom Marvolo Riddle17-Dec-13 2:05
professionalTom Marvolo Riddle17-Dec-13 2:05 
GeneralRe: Using gridview onrowcommand on saving and displaying the data? Pin
Member 840570017-Dec-13 6:28
Member 840570017-Dec-13 6:28 
GeneralRe: Using gridview onrowcommand on saving and displaying the data? Pin
Tom Marvolo Riddle17-Dec-13 17:44
professionalTom Marvolo Riddle17-Dec-13 17:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.