Hi Sck10,
As for the problem you mentioned, here are some of my suggestions:
the GridView control infact is very similiar to the DataGrid control in the
current asp.net version which helps to
generate data display pages. And the BoundField in GridView is just the
same as the BoundColumn in the Datagrid , they are mainly focus on display
text datas on the page rather than other customized style. If we want to
build cutsomized style column(field), I suggest that we try the "template
field"(template column in datagrid),
For example:
<columnfields>
<asp:templatefield headertext="OrderID">
<itemtemplate>
<a href='<%# DataBinder.Eval(Container,
"DataItem.LinkUrl") %>'>
</asp:label>
</itemtemplate>
</asp:templatefield>
In addition, I think you can also try using the Datagrid / repeater
controls in asp.net1.1 so as to be more familiar with the asp.net Template
DAtaBound controls. That'll be more helpful.
If you have any other questions, please also feel free to post here. Thanks.
Regards,
Steven Cheng
Microsoft Online Support
Get Secure!
www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)