MattPociask
Programmer
Hello all!
Im creating an ASP .NET page with an internal search engine with an XML back bone. My XML document is as follows.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<database>
<search_item>
<title>Note Pad</title>
<keyword>Pen</keyword>
<keyword>Text</keyword>
<keyword>Word</keyword>
<html>
<![CDATA[
<b>NotePad</b>
]]>
</html>
</search_item>
<search_item>
<title>Paint</title>
<keyword>Color</keyword>
<keyword>Brush</keyword>
<keyword>Pixel</keyword>
<html>
<![CDATA[
<b>Paint Brush</b>
]]>
</html>
</search_item>
</database>
Can someone push me in the right direction on where to go from here?
Thanks in advance!!
Im creating an ASP .NET page with an internal search engine with an XML back bone. My XML document is as follows.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<database>
<search_item>
<title>Note Pad</title>
<keyword>Pen</keyword>
<keyword>Text</keyword>
<keyword>Word</keyword>
<html>
<![CDATA[
<b>NotePad</b>
]]>
</html>
</search_item>
<search_item>
<title>Paint</title>
<keyword>Color</keyword>
<keyword>Brush</keyword>
<keyword>Pixel</keyword>
<html>
<![CDATA[
<b>Paint Brush</b>
]]>
</html>
</search_item>
</database>
Can someone push me in the right direction on where to go from here?
Thanks in advance!!