Your data is not currently well structured, and your values for week need to
be captured within the XML structure. Think about the relationships between
Football, Week, Team, and Player. Are they clear from your proposed XML
blob? No.
So try something like this
<Football>
<Week weekofplay='1'>
<Team name ='Seattle'>
<Player>AnnaP</Player>
</Team>
<Team name='Undetermined'>
<Player>MikeP</Player>
</Team>
</Week>
<Week weekofplay='2'>
<Team name ='Seattle'>
<Player>AnnaP</Player>
</Team>
<Team name='Undetermined'>
<Player>MikeP</Player>
</Team>
</Week>
</Football>
>I have the following:
> <?xml version="1.0" encoding="utf-8" ?>
[quoted text clipped - 32 lines]
> Mike
> Also some resourses for working with xml files with the gridview