G
Gary B
I have been developing a asp .net web application for
some time now. All of my development and testing has been
on a Windows XP machine.
I am running into a problem now with a client machine
running Windows 98. They cannot see any DropDownList
controls that are embedded inside of a DataGrid.
What they are seeing is the same as if the Visible
property for those controls were set to false.
Again everything works great on all XP clients.
Does anybody have any ideas?
Thanks
Here is an example:
<asp:datagrid id="report" ...>
<Columns>
<asp:TemplateColumn HeaderText="Gender">
<ItemTemplate>
<asp
ropDownList ID="gender" Runat="server"
DataValueField="ID" CssClass="dropDownList"
DataTextField="Gender" SelectedIndex='<%# Convert.ToInt32
((bool)DataBinder.Eval(Container.DataItem, "gender")) %>'>
<asp:ListItem Selected="True" Value="0"
</asp
ropDownList>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:datagrid>
some time now. All of my development and testing has been
on a Windows XP machine.
I am running into a problem now with a client machine
running Windows 98. They cannot see any DropDownList
controls that are embedded inside of a DataGrid.
What they are seeing is the same as if the Visible
property for those controls were set to false.
Again everything works great on all XP clients.
Does anybody have any ideas?
Thanks
Here is an example:
<asp:datagrid id="report" ...>
<Columns>
<asp:TemplateColumn HeaderText="Gender">
<ItemTemplate>
<asp
DataValueField="ID" CssClass="dropDownList"
DataTextField="Gender" SelectedIndex='<%# Convert.ToInt32
((bool)DataBinder.Eval(Container.DataItem, "gender")) %>'>
<asp:ListItem Selected="True" Value="0"
<asp:ListItem Value="1">Male</asp:ListItem>Female</asp:ListItem>
</asp
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:datagrid>