Click here to Skip to main content
15,908,173 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Image not being displayed in mozila/firefox.. Pin
ArunKumarParthiban27-Sep-06 20:46
ArunKumarParthiban27-Sep-06 20:46 
GeneralRe: Image not being displayed in mozila/firefox.. Pin
minhpc_bk28-Sep-06 0:40
minhpc_bk28-Sep-06 0:40 
QuestionHelp with reading XML with C# Pin
robert11027-Sep-06 4:34
robert11027-Sep-06 4:34 
AnswerRe: Help with reading XML with C# Pin
Not Active27-Sep-06 4:43
mentorNot Active27-Sep-06 4:43 
GeneralRe: Help with reading XML with C# Pin
robert11027-Sep-06 4:48
robert11027-Sep-06 4:48 
GeneralRe: Help with reading XML with C# Pin
Not Active27-Sep-06 4:56
mentorNot Active27-Sep-06 4:56 
GeneralRe: Help with reading XML with C# Pin
robert11027-Sep-06 9:36
robert11027-Sep-06 9:36 
GeneralRe: Help with reading XML with C# Pin
robert11027-Sep-06 16:06
robert11027-Sep-06 16:06 
XPathDocument doc = new XPathDocument(FileNameWithPath);
XPathNavigator nav = doc.CreateNavigator();
XPathNodeIterator nodes = nav.Select("/MotherCompany/Compant/Department/IsPositions");
//string x = nodes.Current.GetAttribute("Name", nodes.Current.NamespaceURI);
XPathNavigator nodesNav = nodes.Current;
XPathNodeIterator ni = nodesNav.SelectDescendants(XPathNodeType.Element, false);
while(nodes.MoveNext())
{
    MessageBox.Show(nodes.Current.Name);
    //nodes.Current.GetAttribute("Name",nodes.Current.NamespaceURI);
        // MessageBox.Show(ni.Current.Name + "\n" + ni.Current.Value);
        richTextBox1.AppendText(Environment.NewLine
            + "Name:" + /*x +*/ Environment.NewLine
            + nodes.Current.Name + Environment.NewLine +
            nodes.Current.Value
            );
}

When I look in the debug mode to see what is going; this is what I get for my ni Position=0, Current={Root}, Count=0
And aparently nothing happends...
Can someone please help me read this document? I sure would appreciate it. Thanks.
Regards,Robert
GeneralRe: Help with reading XML with C# Pin
Not Active28-Sep-06 2:15
mentorNot Active28-Sep-06 2:15 
GeneralRe: Help with reading XML with C# Pin
robert11028-Sep-06 8:27
robert11028-Sep-06 8:27 
AnswerRe: Help with reading XML with C# Pin
Jim Conigliaro27-Sep-06 10:04
Jim Conigliaro27-Sep-06 10:04 
Questionplz , send me asp.net applicatijon with c# Pin
jignesh_ce00727-Sep-06 4:20
jignesh_ce00727-Sep-06 4:20 
AnswerRe: plz , send me asp.net applicatijon with c# Pin
Not Active27-Sep-06 4:37
mentorNot Active27-Sep-06 4:37 
GeneralRe: plz , send me asp.net applicatijon with c# Pin
_AK_27-Sep-06 18:59
_AK_27-Sep-06 18:59 
QuestionRunning flash file Pin
dptalt27-Sep-06 3:43
dptalt27-Sep-06 3:43 
AnswerRe: Running flash file Pin
minhpc_bk27-Sep-06 19:37
minhpc_bk27-Sep-06 19:37 
Questionplz send some .net projects using asp.net,c#,sqlserver2000 Pin
basha.sk27-Sep-06 3:08
basha.sk27-Sep-06 3:08 
AnswerRe: plz send some .net projects using asp.net,c#,sqlserver2000 Pin
Guffa27-Sep-06 3:12
Guffa27-Sep-06 3:12 
AnswerRe: plz send some .net projects using asp.net,c#,sqlserver2000 Pin
Sathesh Sakthivel27-Sep-06 3:51
Sathesh Sakthivel27-Sep-06 3:51 
Questionhow to clear the text in alot off texeboxs Pin
ashraf hakiem27-Sep-06 2:47
ashraf hakiem27-Sep-06 2:47 
AnswerRe: how to clear the text in alot off texeboxs Pin
Exelioindia27-Sep-06 2:52
Exelioindia27-Sep-06 2:52 
AnswerRe: how to clear the text in alot off texeboxs Pin
ashraf hakiem27-Sep-06 3:02
ashraf hakiem27-Sep-06 3:02 
AnswerRe: how to clear the text in alot off texeboxs Pin
albCode27-Sep-06 3:38
albCode27-Sep-06 3:38 
AnswerRe: how to clear the text in alot off texeboxs Pin
Charl27-Sep-06 4:07
Charl27-Sep-06 4:07 
GeneralRe: how to clear the text in alot off texeboxs Pin
ashraf hakiem27-Sep-06 22:10
ashraf hakiem27-Sep-06 22:10 

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.