How to call a function within a datagrid?

CyberFan1

New Member
Hey everyone, I need to do something like this in a datalist: <BR><BR><%# get_desc(<%# DataBinder.Eval(Container.DataItem, "SKU") %>) %><BR><BR>But I get the error "Expression Expected" Does anybody have any ideas? <BR>Thanks<BR> MorganYou're almost there, just need to remove the extra blocks. <BR><BR><%# get_desc(DataBinder.Eval(Container.DataItem, "SKU")) %> <BR><BR>Cheers,<BR><BR>])ryThanks
 
Back
Top