Here's an interesting problem...<BR><BR>I have a datalist, and when I click on an item, it's style changes to the SelectedItemStyle like it should. However, I have to click it twice to get the SelectedItemTemplate to take effect. Has anyone else had this problem? My code is included...<BR><BR><asp:datalist datakeyfield="PartId" id="dlsParts" runat="server"><BR> <selecteditemstyle backcolor="#999999" /><BR> <itemtemplate><BR> <table border="1" bordercolor="#cccccc" width="90%" align="center" cellpadding="2" cellspacing="0"><BR> <tr><BR> <td><asp:linkbutton commandname="select" id="btnPartName" runat="server" text='<%# Container.DataItem("PartName") %>' /></td><BR> </tr><BR> </table><BR> </itemtemplate><BR> <selecteditemtemplate><BR> <table border="1" bordercolor="#cccccc" width="90%" align="center" cellpadding="2" cellspacing="0"><BR> <tr><BR> <td><asp:label id="lblPartNum" runat="server" text='<%# Container.DataItem("PartName") %>' /><img src=http://aspmessageboard.com/archive/index.php/"/ISO/Images/next.gif"></td><BR> </tr><BR> </table> <BR> </selecteditemtemplate><BR></asp:datalist><BR><BR>Thank you,<BR>Joe Fiorini