Click here to Skip to main content
15,892,005 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Show Reminder Window Pin
vishnukamath28-Sep-10 19:03
vishnukamath28-Sep-10 19:03 
GeneralRe: Show Reminder Window Pin
Karthik. A29-Sep-10 10:53
Karthik. A29-Sep-10 10:53 
Questionlogin.aspx Pin
Ajay Kale New27-Sep-10 0:10
Ajay Kale New27-Sep-10 0:10 
AnswerRepeat and spam Pin
Not Active27-Sep-10 2:29
mentorNot Active27-Sep-10 2:29 
GeneralRe: Repeat and spam Pin
Ajay Kale New27-Sep-10 2:35
Ajay Kale New27-Sep-10 2:35 
GeneralRe: Repeat and spam Pin
5fingers28-Sep-10 1:15
5fingers28-Sep-10 1:15 
GeneralRe: Repeat and spam Pin
Ajay Kale New28-Sep-10 1:22
Ajay Kale New28-Sep-10 1:22 
Questionsending parameter to webmethod - autocomplete extender Pin
rajkumar.326-Sep-10 21:12
rajkumar.326-Sep-10 21:12 
hi i am using following code to auto complete educational institutes .. but my requirement is to fill educational institutes as per country id ..

i am unable to send country id as parameter to web method .. can any one help .... plz ??


<asp:TextBox ID="txtKey" runat="server" CssClass="regtxtbox" MaxLength="50"></asp:TextBox>
<asp:Panel runat="server" ID="myPanel1" Height="100px" ScrollBars="Vertical" style="overflow:hidden;width:50px;display:none;"> </asp:Panel>
<cc1:AutoCompleteExtender ID="AutoCompleteExtenderDemo" runat="server"
TargetControlID="txtKey" ServiceMethod="GetCompletionList"
MinimumPrefixLength="1" CompletionInterval="1000"
EnableCaching="true" CompletionSetCount="20" CompletionListElementID="myPanel1">
</cc1:AutoCompleteExtender>

public static string[] GetCompletionList(String prefixText, int count)
{

List<String> suggestions = new List<string>();
DataTable dtSchools = new DataTable();
Education education = new Education();
//List<String> suggetions = education.GetAllSchoolsSearch("",prefixText);
DataSet dsSchools = education.GetAllSchoolsSearch("", prefixText);
if (dsSchools != null)
{
dtSchools = dsSchools.Tables[0];
}
if (dtSchools != null && dtSchools.Rows != null && dtSchools.Rows.Count > 0)
{
foreach (DataRow dr in dtSchools.Rows)
{
string suggestion = dr["sschoolName"].ToString();
suggestions.Add(suggestion);
}
}
return suggestions.ToArray();
}
Questionsession fixation Pin
padmanabhan N26-Sep-10 21:06
padmanabhan N26-Sep-10 21:06 
QuestionPage.RegisterStartupScript Pin
Member 387988126-Sep-10 19:33
Member 387988126-Sep-10 19:33 
AnswerRe: Page.RegisterStartupScript Pin
Abhijit Jana26-Sep-10 20:50
professionalAbhijit Jana26-Sep-10 20:50 
GeneralRe: Page.RegisterStartupScript Pin
Not Active27-Sep-10 2:40
mentorNot Active27-Sep-10 2:40 
GeneralRe: Page.RegisterStartupScript Pin
Abhijit Jana27-Sep-10 5:50
professionalAbhijit Jana27-Sep-10 5:50 
AnswerRe: Page.RegisterStartupScript Pin
Not Active27-Sep-10 2:38
mentorNot Active27-Sep-10 2:38 
Questionsql update blank when use use with master page Pin
OUCH NIRAN26-Sep-10 18:21
OUCH NIRAN26-Sep-10 18:21 
AnswerRe: sql update blank when use use with master page Pin
Abhijit Jana26-Sep-10 19:24
professionalAbhijit Jana26-Sep-10 19:24 
GeneralRe: sql update blank when use use with master page Pin
OUCH NIRAN3-Oct-10 18:24
OUCH NIRAN3-Oct-10 18:24 
QuestionDynamic Compilation Pin
Gamzun25-Sep-10 12:10
Gamzun25-Sep-10 12:10 
AnswerRe: Dynamic Compilation Pin
Keith Barrow25-Sep-10 12:13
professionalKeith Barrow25-Sep-10 12:13 
GeneralRe: Dynamic Compilation Pin
Gamzun25-Sep-10 12:26
Gamzun25-Sep-10 12:26 
AnswerRe: Dynamic Compilation Pin
Abhijit Jana25-Sep-10 19:36
professionalAbhijit Jana25-Sep-10 19:36 
GeneralRe: Dynamic Compilation Pin
N a v a n e e t h25-Sep-10 19:50
N a v a n e e t h25-Sep-10 19:50 
GeneralRe: Dynamic Compilation Pin
Abhijit Jana25-Sep-10 20:02
professionalAbhijit Jana25-Sep-10 20:02 
GeneralRe: Dynamic Compilation Pin
Ankur\m/25-Sep-10 23:35
professionalAnkur\m/25-Sep-10 23:35 
GeneralRe: Dynamic Compilation Pin
Abhijit Jana26-Sep-10 6:17
professionalAbhijit Jana26-Sep-10 6:17 

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.