How to call functions in a Class file, when inside a Repeater, without inheritance
问题 I'm using a repeater to create an HTML table with values that come from a database. This part is working perfectly: TEST.ASPX : <td><%# FancyFormat(Eval("MyColumnName"))%></td> The function I use is defined in my code-behind: TEST.ASPX.VB : Function FancyFormat(ByVal Whatever As String) As String It is just a date formatting function, a very generic bit of code. So then I decide to create a better function in a Class file, within the same project, because I want to use the function on twenty