|
Subject:
|
XML Records
|
|
Posted By:
|
Raul
|
Post Date:
|
2/11/2004 7:40:42 PM
|
How do incorporate this XML to instead pull live recordset out of a database. (sql server)
<xml id="Datos"> <ROOT> <ROW Chk="0" ps_id="1" psid_id="5" tipPrd_id="5" /> <ROW Chk="0" ps_id="3" psid_id="3" tipPrd_id="4" /> <ROW Chk="0" ps_id="1" psid_id="2" tipPrd_id="3" /> <ROW Chk="0" ps_id="1" psid_id="5" tipPrd_id="5" /> <ROW Chk="0" ps_id="3" psid_id="3" tipPrd_id="4" /> <ROW Chk="0" ps_id="1" psid_id="2" tipPrd_id="3" /> <ROW Chk="0" ps_id="1" psid_id="2" tipPrd_id="3" /> </ROOT> </xml> <TABLE DATASRC=#Datos BORDER=1 align="center"> <thead> <th nowrap> </th> <th nowrap>Packet</th> <th nowrap>Type</th> <th nowrap>size</th> </thead> <tr> <td nowrap ><input type="checkbox" datafld="Chk" id="Chk" name="Chk" ></td> <td><span datafld="ps_id"></span></td> <td><span datafld="psid_id"></span></td> <td><span datafld="tipPrd_id"></span></td> </tr> </TABLE>
|
|