Click here to Skip to main content
16,011,869 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: xslt table iteration Pin
Anonymous21-Jul-05 7:56
Anonymous21-Jul-05 7:56 
GeneralHelp: XML transform with XSL Pin
Anonymous19-Jul-05 5:40
Anonymous19-Jul-05 5:40 
GeneralRe: Help: XML transform with XSL Pin
Christian Graus19-Jul-05 11:19
protectorChristian Graus19-Jul-05 11:19 
GeneralRe: Help: XML transform with XSL Pin
Anonymous19-Jul-05 13:14
Anonymous19-Jul-05 13:14 
GeneralRe: Help: XML transform with XSL Pin
Bluebamboo29-Jun-06 4:48
Bluebamboo29-Jun-06 4:48 
GeneralWebservice against DLL Pin
dabuskol18-Jul-05 20:42
dabuskol18-Jul-05 20:42 
GeneralRe: Webservice against DLL Pin
DavidNohejl19-Jul-05 2:48
DavidNohejl19-Jul-05 2:48 
GeneralMy XmlFile looses its tree hierarchy after saving it Pin
rudy.net18-Jul-05 5:44
rudy.net18-Jul-05 5:44 
Hello,
I read my xml file into a dataset and set the datasource of a datagrid to access one of the datatables. Problem is that when new rows are added to the datagrid, and I call the WriteXml method, the new rows are added at the root.
Following is an example:
<?xml version="1.0" standalone="yes"?>
<root xmlns="http://tempuri.org/Database.xsd">
<Database>
<Positions>
<Position PositionCode="1" PositionName="Operations Supervisor" Salary="0" />
</Positions>
</Database>
</root>

Then I set the DataSource to of a datagrid to "Position" table and after adding a couple of rows, the saved file looks like:
<?xml version="1.0" standalone="yes"?>
<root xmlns="http://tempuri.org/Database.xsd">
<Database>
<Positions>
<Position PositionCode="1" PositionName="Operations Supervisor" Salary="0" />
</Positions>
</Database>
<Position PositionCode="2" PositionName="Secretary" Salary="0"/>
<Position PositionCode="3" PositionName="LazyGuy" Salary="0"/>
</root>

Note that the new rows were added in "/root" instead of in "root/Database/positions"
Generalfile containing specification of default namespace Pin
Suman Singh18-Jul-05 4:31
professionalSuman Singh18-Jul-05 4:31 
Generalexecute xml Pin
18-Jul-05 1:23
suss18-Jul-05 1:23 
QuestionMemory leak? Pin
LaxRoth17-Jul-05 21:29
LaxRoth17-Jul-05 21:29 
AnswerRe: Memory leak? Pin
Philip Fitzsimons20-Jul-05 5:23
Philip Fitzsimons20-Jul-05 5:23 
GeneralRe: Memory leak? Pin
LaxRoth21-Jul-05 21:04
LaxRoth21-Jul-05 21:04 
GeneralXML to Text with &quot;C#&quot; Pin
fcn][Stampede17-Jul-05 9:07
fcn][Stampede17-Jul-05 9:07 
GeneralRe: XML to Text with &quot;C#&quot; Pin
Gavin Jeffrey17-Jul-05 21:02
Gavin Jeffrey17-Jul-05 21:02 
Generalchange in schema file Pin
qadirchalla@yahoo.com17-Jul-05 1:50
qadirchalla@yahoo.com17-Jul-05 1:50 
GeneralXSLT HTML &gt; XML Transform Pin
eggie514-Jul-05 7:06
eggie514-Jul-05 7:06 
GeneralRe: XSLT HTML &gt; XML Transform Pin
DavidNohejl14-Jul-05 7:38
DavidNohejl14-Jul-05 7:38 
GeneralRe: XSLT HTML &gt; XML Transform Pin
malharone22-Jul-05 10:33
malharone22-Jul-05 10:33 
GeneralRe: XSLT HTML &gt; XML Transform Pin
DavidNohejl22-Jul-05 10:48
DavidNohejl22-Jul-05 10:48 
GeneralRe: XSLT HTML &gt; XML Transform Pin
malharone22-Jul-05 10:53
malharone22-Jul-05 10:53 
GeneralRe: XSLT HTML &gt; XML Transform Pin
DavidNohejl22-Jul-05 11:03
DavidNohejl22-Jul-05 11:03 
Generalxml and crystal report Pin
yitong13-Jul-05 20:42
yitong13-Jul-05 20:42 
GeneralXML to DataGrid Pin
Anonymous12-Jul-05 9:50
Anonymous12-Jul-05 9:50 
GeneralRe: XML to DataGrid Pin
rudy.net15-Jul-05 18:38
rudy.net15-Jul-05 18:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.