In my datagrid I need to place some data in the beginning of my field. I've been successful placing it at the end, but not in the begining. Is this possible?
<%# Container.DataItem ("Bid_Schedule_Desc") & "Hello"%>
Printable View
In my datagrid I need to place some data in the beginning of my field. I've been successful placing it at the end, but not in the begining. Is this possible?
<%# Container.DataItem ("Bid_Schedule_Desc") & "Hello"%>
<%# "Hello" & Container.DataItem ("Bid_Schedule_Desc")%>
Should work fine.