 |
<%
if (doc.SelectSingleNode ("/root/shopcart/item") != null)
Response.Write (doc.SelectSingleNode ("/root/shopcart/item").InnerText);
%> |
 |
<%
if (doc.SelectSingleNode ("/root/symbol") != null)
Response.Write (doc.SelectSingleNode ("/root/symbol").InnerText);
if (doc.SelectSingleNode ("/root/shopcart/subtotal") != null)
Response.Write (doc.SelectSingleNode ("/root/shopcart/subtotal").InnerText);
%> |
 |