xsl-list
[Top] [All Lists]

insert subnodes?

2003-07-05 11:32:54
Hello,

I have a xml file like:

<formular name="register">
  <field type="text" name="user" size="8">User</field>
  <field type="password" name="password" size="8">Password</field>
  <submit>Register</submit>
</formular>

Now I want to insert the following xml thing:

<error>
  <head>You had the following errors:</head>
  <msg>Your username is to short (min. 4 characters).</msg>
  <msg>Your password is to short (min. 4 characters).</msg>
</error>


So that it looks like:

<formular name="register">
  <error>
    <head>You had the following errors:</head>
    <msg>Your username is to short (min. 4 characters).</msg>
    <msg>Your password is to short (min. 4 characters).</msg>
  </error>
  <field type="text" name="user" size="8">User</field>
  <field type="password" name="password" size="8">Password</field>
  <submit>Register</submit>
</formular>


Ok, I have made the examle simple, there are many things in my xml file..

I could use

<xsl:template match="formular[(_at_)name='register']"
</xsl:template>

To find my tag.  But what do I write in there?

Thanks,
Martin

--
If you've got an idea and need help,
or just need general encouragement,
write me a message. ;-)

XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>