
April 15th, 2003, 03:40 PM
|
|
Junior Member
|
|
Join Date: Apr 2003
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
performing search through XML repository
Hi all
I am trying to build simple XML based repository. Editing is done completly through my Windows application. Problem is now when I try to dispatch my entered data.
To clarify:
- with my win. app. I am building XML document that looks something like this
Code:
<albums>
<cd>
<title>The sun is shining</title>
<artist>Joe Doe</artist>
<cdCount>2</cdCount>
</cd>
<cd>
<title>Attack of killer whales</title>
<artist>John Denver</artist>
<cdCount>2</cdCount>
</cd>
</albums>
- My goal is to do HTML ONLY using XMLpath (if it's possible at all). I can already search using following code:
Code:
<xsl:for-each select="//cd[artist='John Denver']">
.....
And it worked!
But, how to insert variable from form.input field????
|