1 / 3

eurospice

eurospice. Eur. spice. Wir liefern Gewürze aus aller Welt, zu den Menschen in aller Welt. schnuppern Sie in unser Angebot. XML mit Servlet. XML mit ASP.NET. Datenbank mit Servlet. Datenbank mit ASP.NET. Transformer. Warenbestandsabfrage mit XML und ASP.Net. XML-Document: Bsp.: ...

lacey
Download Presentation

eurospice

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. eurospice Eur spice Wir liefern Gewürze aus aller Welt, zu den Menschen in aller Welt schnuppern Sie in unser Angebot XML mit Servlet XML mit ASP.NET Datenbank mit Servlet Datenbank mit ASP.NET

  2. Transformer Warenbestandsabfrage mit XML und ASP.Net XML-Document: Bsp.: ... <sp:artikel> <sp:name>Senf</sp:name> <sp:bestand>10</sp:bestand> <sp:preis>25</sp:preis> <sp:waehrung>€</sp:waehrung> </sp:artikel> ... XSL ... <xsl:for-each select="sp:artikel"> <tr> <td><xsl:value-of select="sp:name"/></td> <td><xsl:value-of select="sp:bestand"/></td> <td><xsl:value-of select="sp:preis"/></td> <td><xsl:value-of select="sp:waehrung"/></td> </tr> </xsl:for-each> ... Ausschnitt aus dem ASP-Quellcode ... XmlDocument docXml = new XmlDocument(); docXml.Load(Server.MapPath("lager1.xml")); XslTransform docXsl = new XslTransform(); docXsl.Load(Server.MapPath("lager1.xsl")); docXsl.Transform(docXml,null,Response.Output); ... Response ...

More Related