i'm just starting to program in ASP.Net VB and I need help! I have a few HTML(aspx) pages and for each page his XML file. When I visit any of these pages I want to read his XML file and set texts for labels. How i can do that??? For examle:xml file:\[code\]<?xml version="1.0" encoding="utf-8" ?><page> <title>Page Number One:</title> <chapter1>Main Chapter:</chapter1> <chapter2>Second Chapter:</chapter2> ...</page>\[/code\]html page:\[code\]... <form id="form1" runat="server"> <asp:Label ID="lblTitle" runat="server" Text="<%= title %>">"></asp:Label> <asp:Label ID="lblFName" runat="server" Text="<%= chapter1 %>"></asp:Label> <asp:Label ID="lblLName" runat="server" Text="<%= chapter2 %>"></asp:Label> </form> ...\[/code\]something like that or better way to do that??? Thanks a lot!!!