//The Method Getresult will return (Response.Write) which contains search results seprated by character "~" // For E.G. "Ra~Rab~Racd~Raef~Raghi" which will going to display in search suggest box private void GetresultGood() { IGoodService service = new GoodService(); IEnumerable <goods> names = service.GetMany(c => c.label.StartsWith(clientName)); StringBuilder sb = new StringBuilder(); foreach (goods swap in names) { sb.Append(swap.label + "~"); //Create Con System.Diagnostics.Debug.WriteLine("------------------------------------///////////98 : " + swap.label); } Response.Write(sb); }