Click here to Skip to main content
15,891,981 members
Home / Discussions / C#
   

C#

 
AnswerRe: Manipulate XML Pin
NavnathKale19-Apr-10 0:00
NavnathKale19-Apr-10 0:00 
GeneralRe: Manipulate XML Pin
NarVish19-Apr-10 1:13
NarVish19-Apr-10 1:13 
GeneralRe: Manipulate XML Pin
NavnathKale19-Apr-10 2:08
NavnathKale19-Apr-10 2:08 
GeneralRe: Manipulate XML Pin
NarVish19-Apr-10 3:11
NarVish19-Apr-10 3:11 
GeneralRe: Manipulate XML Pin
NarVish19-Apr-10 19:13
NarVish19-Apr-10 19:13 
GeneralRe: Manipulate XML Pin
NavnathKale19-Apr-10 21:48
NavnathKale19-Apr-10 21:48 
GeneralRe: Manipulate XML Pin
NarVish19-Apr-10 23:34
NarVish19-Apr-10 23:34 
GeneralRe: Manipulate XML Pin
NavnathKale20-Apr-10 0:58
NavnathKale20-Apr-10 0:58 
check line fieldNodes = node.SelectNodes("/StudentClass");
see other ways to get all StudentClass if it fails.

else try this

foreach (XmlNode node in fieldNodes)
{
    if (node.Attributes["ID"].Value == "101")
    {
        studentNode = node["StudentClass"];

        if(studentNode != null)
        {
            //loop thrugh all childNodes to get node with ref=F_STRENGTH
            foreach (XmlNode nodeClass in studentNode.ChildNodes)
            {
                if (nodeClass.Attributes["ref"].Value == "F_STRENGTH")
                {
                    refNode = nodeClass;
                    break;
                }
            }
        }
        break;
    }
}

GeneralRe: Manipulate XML Pin
NarVish20-Apr-10 1:20
NarVish20-Apr-10 1:20 
GeneralRe: Manipulate XML Pin
NavnathKale20-Apr-10 1:21
NavnathKale20-Apr-10 1:21 
QuestionHow to put large text data (~20mb) into sql cs 3.5 database? Pin
Anindya Chatterjee18-Apr-10 21:42
Anindya Chatterjee18-Apr-10 21:42 
AnswerRe: How to put large text data (~20mb) into sql cs 3.5 database? Pin
Ashfield18-Apr-10 22:16
Ashfield18-Apr-10 22:16 
GeneralRe: How to put large text data (~20mb) into sql cs 3.5 database? Pin
Anindya Chatterjee18-Apr-10 22:28
Anindya Chatterjee18-Apr-10 22:28 
GeneralRe: How to put large text data (~20mb) into sql cs 3.5 database? Pin
Ashfield18-Apr-10 22:43
Ashfield18-Apr-10 22:43 
GeneralRe: How to put large text data (~20mb) into sql cs 3.5 database? Pin
Md. Marufuzzaman19-Apr-10 0:09
professionalMd. Marufuzzaman19-Apr-10 0:09 
GeneralRe: How to put large text data (~20mb) into sql cs 3.5 database? Pin
Anindya Chatterjee19-Apr-10 0:41
Anindya Chatterjee19-Apr-10 0:41 
QuestionMFC to C# HELP ? Pin
Nematjon Rahmanov18-Apr-10 20:16
Nematjon Rahmanov18-Apr-10 20:16 
AnswerRe: MFC to C# HELP ? Pin
Jimmanuel19-Apr-10 4:08
Jimmanuel19-Apr-10 4:08 
QuestionNetwork Scanning Pin
satsumatable18-Apr-10 19:39
satsumatable18-Apr-10 19:39 
Questiondeploying web service on windows 7 Pin
Ice_Freez0518-Apr-10 18:56
Ice_Freez0518-Apr-10 18:56 
AnswerRe: deploying web service on windows 7 Pin
Calla18-Apr-10 21:36
Calla18-Apr-10 21:36 
GeneralRe: deploying web service on windows 7 Pin
Ice_Freez0518-Apr-10 23:28
Ice_Freez0518-Apr-10 23:28 
GeneralRe: deploying web service on windows 7 Pin
Calla19-Apr-10 0:09
Calla19-Apr-10 0:09 
GeneralRe: deploying web service on windows 7 Pin
Ice_Freez0519-Apr-10 15:13
Ice_Freez0519-Apr-10 15:13 
AnswerRe: deploying web service on windows 7 Pin
Md. Marufuzzaman19-Apr-10 0:18
professionalMd. Marufuzzaman19-Apr-10 0:18 

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.