I have installed the update that you gave me and I am now having an issue with the button column on the datagrid. The two button columns defined below were working prior to the new install. Bottom line, the button columns are images and in the Visual Studio development application you can see the buttons, but when you compile and run the aspx page, the pictures no longer appear and the link is missing.
Any ideas (Build: EOWeb_2008_65_Setup.exe)?
Code: HTML/ASPX
<eo:Grid ID="grdUserAdmin" runat="server" BorderColor="PaleGoldenrod" BorderWidth="1px" ClientSideOnContextMenu="ShowContextMenuUser"
ClientSideOnItemCommand="grdUserOnItemCommand" ColumnHeaderAscImage="00050104" ColumnHeaderDescImage="00050105" ColumnHeaderDividerImage="00050103"
FixedColumnCount="1" Font-Bold="False" Font-Italic="False" Font-Names="Tahoma" Font-Overline="False" Font-Size="XX-Small" Font-Strikeout="False" Font-Underline="False"
FullRowMode="False" GoToBoxVisible="True" GridLineColor="220, 223, 228" GridLines="Both" Height="389px" ItemHeight="18" KeyField="user_key" Width="401px">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<CellStyle CssText="padding-left:8px;padding-top:2px;white-space:nowrap;" />
<SelectedStyle CssText="background-color: #316ac5; color: white" />
<FixedColumnCellStyle CssText="border-right: #d6d2c2 1px solid; padding-right: 10px; border-top: #faf9f4 1px solid; border-left: #faf9f4 1px solid; border-bottom: #d6d2c2 1px solid; background-color: #ebeadb; text-align: right; color: black;" />
<ItemHoverStyle CssText="background-color: whitesmoke" />
</eo:GridItemStyleSet>
</ItemStyles>
<ContentPaneStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;" />
<GoToBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; BORDER-TOP: #7f9db9 1px solid; BORDER-LEFT: #7f9db9 1px solid; WIDTH: 40px; BORDER-BOTTOM: #7f9db9 1px solid" />
<Columns>
<eo:RowNumberColumn Width="0">
</eo:RowNumberColumn>
<eo:ButtonColumn AllowResize="False" ButtonText="<img src='Images/admin_ok_16_hot.gif' alt='Click Here to Enable the Users Rights. If the user has the status of "Inactive", then VIEW ONLY rights will apply.' border='0' />"
CommandName="ENABLEUSER" Width="26">
</eo:ButtonColumn>
<eo:ButtonColumn AllowResize="False" ButtonText="<img src='Images/admin_cancel_16_hot.gif' alt='Click Here to Disable the Users Rights. By doing so, VIEW ONLY rights will apply.' border='0' />"
CommandName="DISABLEUSER" Width="26">
</eo:ButtonColumn>
<eo:StaticColumn DataField="user_id" HeaderText="User ID" Width="65">
</eo:StaticColumn>
<eo:StaticColumn DataField="full_name" HeaderText="Full Name" Width="105">
</eo:StaticColumn>
<eo:StaticColumn DataField="access_type" HeaderText="User Rights" Width="85">
</eo:StaticColumn>
<eo:StaticColumn AllowResize="False" AllowSort="True" DataField="status" HeaderText="Status" Width="70">
</eo:StaticColumn>
</Columns>
<ColumnHeaderStyle CssText="background-image:url('00050101');padding-left:8px;padding-top:3px;" />
</eo:Grid>