K
Kent Ogletree
I am converting an app from JavaScript ASP pages to ASP.NET in VB and have
not found a good reference for the XML classes in .NET as of yet. What I
have is XML encoded data in a field in my database which I have to parse and
use to determine what controls to place on the web form. This data is placed
in the database by a separate app that we do not control, so we must deal
with what is there.
<qMultipleChoice>
<qText>What workstation are you working at?</qText>
<qChoice>1</qChoice>
<qChoice>2</qChoice>
<qChoice>3</qChoice>
<qChoice>4</qChoice>
<qChoice>5</qChoice>
<qChoice>7</qChoice>
<qChoice>8</qChoice>
<qChoice>9</qChoice>
<qChoice>Other</qChoice>
</qMultipleChoice>
The original app used MSXML to convert this, which I have personally never
used. I do not want to waste a bunch of time trying to rewrite the server
side JavaScript implementation to VB using MSXML COM if there is something
within the System.XML classes that will do the trick. Can someone make a
suggestion on what classes would be best and easiest to use here and where I
can find some good help to get started with it?
TIA,
Kent
not found a good reference for the XML classes in .NET as of yet. What I
have is XML encoded data in a field in my database which I have to parse and
use to determine what controls to place on the web form. This data is placed
in the database by a separate app that we do not control, so we must deal
with what is there.
<qMultipleChoice>
<qText>What workstation are you working at?</qText>
<qChoice>1</qChoice>
<qChoice>2</qChoice>
<qChoice>3</qChoice>
<qChoice>4</qChoice>
<qChoice>5</qChoice>
<qChoice>7</qChoice>
<qChoice>8</qChoice>
<qChoice>9</qChoice>
<qChoice>Other</qChoice>
</qMultipleChoice>
The original app used MSXML to convert this, which I have personally never
used. I do not want to waste a bunch of time trying to rewrite the server
side JavaScript implementation to VB using MSXML COM if there is something
within the System.XML classes that will do the trick. Can someone make a
suggestion on what classes would be best and easiest to use here and where I
can find some good help to get started with it?
TIA,
Kent