I am trying to move the show band button to the last column instead of the first. Can some one help me get it done. Here is the page Band Page.
The asp code looks like this:
VB Code:
<asp:datagrid id="dgBands" runat="server" BorderColor="#CC9966" BorderStyle="None" BorderWidth="1px" BackColor="White" CellPadding="4"> <FooterStyle ForeColor="#330099" BackColor="#FFFFCC"> </FooterStyle> <SelectedItemStyle Font-Bold="True" ForeColor="#663399" BackColor="#FFCC66"> </SelectedItemStyle> <ItemStyle ForeColor="#330099" BackColor="White"> </ItemStyle> <HeaderStyle Font-Bold="True" ForeColor="#FFFFCC" BackColor="#990000"> </HeaderStyle> <PagerStyle HorizontalAlign="Center" ForeColor="#330099" BackColor="#FFFFCC"> </PagerStyle> <Columns> <asp:ButtonColumn Text="Show Band" CommandName="Select" ButtonType="LinkButton"> </asp:ButtonColumn> </Columns> </asp:datagrid>




Reply With Quote