User Profile

Collapse

Profile Sidebar

Collapse
Ann
Ann
Last Activity: Oct 11 '05, 11:34 AM
Joined: Sep 27 '05
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Ann
    replied to Alternative to GetElementById
    in .NET
    u can do it with xPathNavigator. .....as follows :

    XPathDocument myXPathDocument = new XPathDocument(@ "C:\globals\glo balsInputs.xml" );
    XPathNavigator myXPathNavigato r = myXPathDocument .CreateNavigato r();
    XPathNodeIterat or myXPathNodeIter ator;
    myXPathNodeIter ator = myXPathNavigato r.Select ("//table[@id = '"+parameter +"']");

    while(myXPathNo deIterator.Move Next())...
    See more | Go to post

    Leave a comment:


  • Ann
    replied to XML to TXT
    in .NET
    hope it helps

    I hope this xsl program will give the output


    <xsl:styleshe et version="1.0" xmlns:xsl="http ://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:template match="//tag">
    <xsl:value-of select="." />
    <xsl:value-of select="@att" />
    </xsl:template>...
    See more | Go to post

    Leave a comment:


  • Ann
    replied to Extending Stylesheets
    in XML
    Extending style sheets

    i want to use my own function in a .xsl file. how can i do it in c#?
    See more | Go to post

    Leave a comment:


  • Ann
    started a topic Extending Stylesheets
    in XML

    Extending Stylesheets

    i want to use a function similar to xalan:nodeset in my xsl. i am doing it in c#.net by means of using the XsltArgumentLis t.AddExtensionO bject. but i have problem in understanding the complete functionality of xalan:nodeset. can anyone please help me in this :D
    See more | Go to post
No activity results to display
Show More
Working...