Click here to Skip to main content
15,903,175 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralMultiline text Pin
kavinnagarajan9-Aug-09 22:09
kavinnagarajan9-Aug-09 22:09 
GeneralRe: Multiline text Pin
Abhijit Jana9-Aug-09 22:18
professionalAbhijit Jana9-Aug-09 22:18 
GeneralMultiline text Pin
kavinnagarajan9-Aug-09 22:20
kavinnagarajan9-Aug-09 22:20 
GeneralRe: Multiline text Pin
SeMartens9-Aug-09 21:22
SeMartens9-Aug-09 21:22 
GeneralRe: Multiline text Pin
Abhijit Jana9-Aug-09 22:05
professionalAbhijit Jana9-Aug-09 22:05 
GeneralRe: Multiline text Pin
SeMartens9-Aug-09 22:09
SeMartens9-Aug-09 22:09 
GeneralRe: Multiline text Pin
Christian Graus9-Aug-09 21:56
protectorChristian Graus9-Aug-09 21:56 
QuestionCalling webservice using javascript Pin
Vanamaindia9-Aug-09 20:20
Vanamaindia9-Aug-09 20:20 
I'm calling webserivce using javascript.it's working fine.
here i'm populating the dropdown using the result of webservice.
and added a (Select from list) item to dropdown.In the dropdown onchange event i'm calling the webservice to fill the another dropdown,
here is the problem.when i'm selecting the (select from list) item.no need to call the webserivce and clear the second dropdown list.In this situation i'm planning to use same javascript method to clear the second dropdown.

here my javascript

function Users_Check(result)
{
if(result.error)
{
alert('Error occured while processing.Error Description :-' + result.errorDetail.string);
return false;
}
else
{
if(result.value!=null)
{
if(result.value.length>0)
{
if(result.value[0].length>0)
{
var tOptArr=result.value[0].split('~');
document.getElementById('ddlGroups').options.length = 0;
for(var iLoop=0;iLoop<tOptArr.length;iLoop++)
{
var opt = document.createElement('option');
document.getElementById('ddlGroups').options.add(opt);
opt.text=tOptArr[iLoop];
}
}
return false;
}
}
else
{
alert('Unable to get the required information. Check the page scripts.');
return false;
}
}
}


this code will call through webserivce
but i my case

i need to call manually.how can pass the result to this method..
Questiondrop down list Pin
rajni_nanu9-Aug-09 19:14
rajni_nanu9-Aug-09 19:14 
AnswerRe: drop down list Pin
Abhijit Jana9-Aug-09 19:18
professionalAbhijit Jana9-Aug-09 19:18 
GeneralRe: drop down list Pin
rajni_nanu9-Aug-09 19:29
rajni_nanu9-Aug-09 19:29 
GeneralRe: drop down list Pin
Christian Graus9-Aug-09 19:49
protectorChristian Graus9-Aug-09 19:49 
GeneralRe: drop down list Pin
Abhijit Jana9-Aug-09 19:49
professionalAbhijit Jana9-Aug-09 19:49 
QuestionSMS Pin
kavinnagarajan9-Aug-09 19:08
kavinnagarajan9-Aug-09 19:08 
AnswerRe: SMS Pin
Abhijit Jana9-Aug-09 19:17
professionalAbhijit Jana9-Aug-09 19:17 
GeneralRe: SMS Pin
kavinnagarajan9-Aug-09 19:22
kavinnagarajan9-Aug-09 19:22 
GeneralRe: SMS Pin
Christian Graus9-Aug-09 19:48
protectorChristian Graus9-Aug-09 19:48 
GeneralMultiline textbox Pin
kavinnagarajan9-Aug-09 20:23
kavinnagarajan9-Aug-09 20:23 
GeneralRe: Multiline textbox Pin
Christian Graus9-Aug-09 21:55
protectorChristian Graus9-Aug-09 21:55 
QuestionPre_Init and Button_Click Pin
Ersan Ercek9-Aug-09 11:23
Ersan Ercek9-Aug-09 11:23 
AnswerRe: Pre_Init and Button_Click Pin
Manas Bhardwaj9-Aug-09 11:54
professionalManas Bhardwaj9-Aug-09 11:54 
GeneralRe: Pre_Init and Button_Click Pin
Ersan Ercek9-Aug-09 22:18
Ersan Ercek9-Aug-09 22:18 
GeneralRe: Pre_Init and Button_Click Pin
Ersan Ercek12-Aug-09 1:14
Ersan Ercek12-Aug-09 1:14 
QuestionSelective validation? Pin
Richard Blythe9-Aug-09 9:04
Richard Blythe9-Aug-09 9:04 
AnswerRe: Selective validation? Pin
Not Active9-Aug-09 9:12
mentorNot Active9-Aug-09 9:12 

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.