I'm creating a table to display a detailed listing of the results for a sports team.<BR><BR>The database has a coulmn labeld "WonOrLost" that is a bit... it holds either a 1 or a 0.<BR><BR>I am using a DataGrid to display the results. When a "1" is returned, I want to display a W in green. When a "0" is returned, I want to display an L in red.<BR><BR>How can I accomplish this? <BR><BR>I'm using a TemplateColumn, but can't figure out how to preform business logic in it. Just for the record, I'm using C#.<BR><BR>I want to keep the display code apart from the data, so I would rather not oull this information directly out of the database.<BR><BR>Thanks in advance.I'm sorry, I'm not familiar with C# but my suggestion is more for an approach than an actual code sample - and I've been using this methodology successfully to generate dynamic hyperlinks from a database in a datagrid itemtemplate using vb.net...hope it helps.<BR><BR>It may not be the most elegant solution, but you could try:<BR><BR>1) create two small .gifs, your green "W" and your red "L" and name them 1.gif and 0.gif respectively.<BR><BR>2) in your itemtemplate, embed your data container into an img tag like so:<BR><BR><img src=http://aspmessageboard.com/archive/index.php/"../images/<%# container.dataitem("WonOrLost") %>.gif"><BR><BR>Assuming that your aforementioned 1.gif and 0.gif are located in a folder named "images", this (or rather it's c# equivalent) should work for you.<BR><BR>Like I said, I've been using this to generate hyperlinks and it seems to work relatively quickly. I haven't tried it yet in an <img> tag but i don't know why it wouldn't work - if anyone else has a better suggestion I would also like to hear it, since this is something I seem to be doing a lot of.Hi friend<BR>I am not getting u properly..i have also a same doubt ....i want to clear that from you....my problem is i have 2 columns in a datagrid<BR><BR><BR>dgrid1<BR>--------<BR>schname schyear<BR>--------------------<BR>sname1 2003<BR>sname2 2002<BR>sname3 2002<BR><BR><BR>the date source for this datagrid is a datatable......<BR><BR>i want to display the first column in that grid as a hyperlink...<BR>and when the user clicks that link it has to go for that perticular school report....can u pls give me a idea how to do that....pls send me a sample code<BR><BR>lot of thanks<BR>Satya<BR>[email protected]