
May 20th, 2004, 01:55 PM
|
|
Registered User
|
|
Join Date: May 2004
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Adding Data Islands by input...!
Hi everybody,
I need some help with my XML....
I have an XML file and am using asp.net (webmatrix) to view it. I need to make an input of some kind to add records into my Data Islands.....
Can anyone help with this I am absoluty out!
If you have suggestions for using some other program (than .net) I am all ears.
Here is a part of my code:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="C:\Documents and Settings\Agusta Magnusdottir\My Documents\XML dot\Beer-dark.xsl"?>
<Bar xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Documents and Settings\Agusta Magnusdottir\My Documents\XML dot\Beer.xsd">
<Beer>
<Name>Royal</Name>
<Brewer>Tralla</Brewer>
<Features>
<Type>Dark</Type>
<Ingredience>sugar and spice</Ingredience>
<Precentage>4,5%</Precentage>
</Features>
<Description>A fairly light beer with a sweet twist</Description>
</Beer>
<Beer>
<Name>Carlsberg</Name>
<Brewer>Carlsberg</Brewer>
<Features>
<Type>Normal</Type>
<Ingredience>wheat</Ingredience>
<Precentage>4,3%</Precentage>
</Features>
<Description>Your typical, normal beer, suitable for all occations</Description>
</Beer>
</Bar>
Hope there is somebody that can help!!!
Regards,
Ynja
Last edited by Ynja : May 20th, 2004 at 01:58 PM.
|