Hi all!

I'm looking for a solution for how to create a DropDownList in an aspx page with VB. The values of this list are stored in an XML file which looks like this one:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<list>
    <prof name="bill">
        <nomClasse>1</nomClasse>
        <nomClasse>2</nomClasse>
        <nomClasse>3</nomClasse>
    </prof>
    <prof name="gates">
         <nomClasse>4</nomClasse>
         <nomClasse>5</nomClasse>
    </prof>
</list>
I want to create the droplist by checking which professor is logged in.

Can someone help me.......

Thank's a lot!

Bye.