I'm trying to display five items from an xml file at a time on a page and let the user click a link to display the next five. Is there any way to do this without doing an href to the same page. I'm losing my data in the dom if I href. I thought I could use a frame page but I don't know how to do that in asp.net. Could anyone give some clues how to neatly display my five at a time?<BR>Thankswhy don't you laod the XML into a Dataset, bind it to a DataGrid, and use the DataGrid's Paging capabilities?Thanks