Click here to Skip to main content
15,885,546 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Deleting session id's created by browsers on server's end Pin
Abhijit Jana12-Aug-09 4:01
professionalAbhijit Jana12-Aug-09 4:01 
GeneralRe: Deleting session id's created by browsers on server's end Pin
shankbond12-Aug-09 4:19
shankbond12-Aug-09 4:19 
AnswerRe: Deleting session id's created by browsers on server's end Pin
Abhijit Jana12-Aug-09 4:34
professionalAbhijit Jana12-Aug-09 4:34 
AnswerRe: Deleting session id's created by browsers on server's end Pin
yesu prakash12-Aug-09 18:40
yesu prakash12-Aug-09 18:40 
GeneralRe: Deleting session id's created by browsers on server's end Pin
shankbond12-Aug-09 22:47
shankbond12-Aug-09 22:47 
Questionhow to get node value from var containing xml file data using java script Pin
trilokharry12-Aug-09 2:05
trilokharry12-Aug-09 2:05 
AnswerRe: how to get node value from var containing xml file data using java script Pin
Mike Ellison12-Aug-09 2:31
Mike Ellison12-Aug-09 2:31 
GeneralRe: how to get node value from var containing xml file data using java script Pin
trilokharry12-Aug-09 2:48
trilokharry12-Aug-09 2:48 
Hello
in below code after getting xml data in variable now I want to get node value of first child.
I have tried but not able to access node value but when I'm showing that var in alert message it's showing data in xml format.
thanks

see below code:
<script language="javascript" type="text/javascript">
<!--
//Browser Support Code
function ajaxFunction(){
var ajaxRequest; // The variable that makes Ajax possible!

try{
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
} catch (e){
// Internet Explorer Browsers
try{
ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try{
ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e){
// Something went wrong
alert("Your browser broke!");
return false;
}
}
}
// Create a function that will receive data sent from the server
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){
document.myForm.time.value = ajaxRequest.responseText;
//alert(ajaxRequest.responseText)
ajaxResponse = ajaxRequest.responseText;
//ajaxResponse contains xml data now I want get node value of first child

}


function verify()
{
// 0 Object is not initialized
// 1 Loading object is loading data
// 2 Loaded object has loaded data
// 3 Data from object can be worked with
// 4 Object completely initialized
if (xmlDoc.readyState != 4)
{
return false;
}
}
//-->
</script>

You get the best out of others when you give the best of yourself.

GeneralRe: how to get node value from var containing xml file data using java script Pin
gottimukkala12-Aug-09 3:14
gottimukkala12-Aug-09 3:14 
GeneralRe: how to get node value from var containing xml file data using java script Pin
trilokharry12-Aug-09 3:55
trilokharry12-Aug-09 3:55 
QuestionDesigning templates Pin
4anusha412-Aug-09 1:56
4anusha412-Aug-09 1:56 
AnswerRe: Designing templates Pin
Mike Ellison12-Aug-09 2:30
Mike Ellison12-Aug-09 2:30 
AnswerRe: Designing templates Pin
4anusha412-Aug-09 2:42
4anusha412-Aug-09 2:42 
QuestionUsercontrol+placeholder Pin
Ramkumar_S12-Aug-09 1:31
Ramkumar_S12-Aug-09 1:31 
AnswerRe: Usercontrol+placeholder Pin
Mike Ellison12-Aug-09 2:29
Mike Ellison12-Aug-09 2:29 
Questionhebrew and mail Pin
polycom12312-Aug-09 1:21
polycom12312-Aug-09 1:21 
AnswerRe: hebrew and mail Pin
Abhishek Sur12-Aug-09 4:09
professionalAbhishek Sur12-Aug-09 4:09 
QuestionUpdate panel problem Pin
muniratnam12-Aug-09 1:20
muniratnam12-Aug-09 1:20 
AnswerRe: Update panel problem Pin
4anusha412-Aug-09 1:22
4anusha412-Aug-09 1:22 
GeneralRe: Update panel problem Pin
muniratnam12-Aug-09 1:40
muniratnam12-Aug-09 1:40 
QuestionRestricting GridView.ImageField size for image display Pin
Chesnokov Yuriy12-Aug-09 1:03
professionalChesnokov Yuriy12-Aug-09 1:03 
AnswerRe: Restricting GridView.ImageField size for image display Pin
Mike Ellison12-Aug-09 2:28
Mike Ellison12-Aug-09 2:28 
GeneralRe: Restricting GridView.ImageField size for image display Pin
Chesnokov Yuriy12-Aug-09 3:02
professionalChesnokov Yuriy12-Aug-09 3:02 
GeneralRe: Restricting GridView.ImageField size for image display Pin
Mike Ellison12-Aug-09 14:50
Mike Ellison12-Aug-09 14:50 
AnswerRe: Restricting GridView.ImageField size for image display Pin
Abhijit Jana12-Aug-09 4:19
professionalAbhijit Jana12-Aug-09 4:19 

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.