I have a module where I keep all my common functions, now I want to use one of the functions like this in the page.aspx file:
<td align="Center"><%#CONVERT_TXT(Container.DataItem("fldACTIVE"))%></td>
The function CONVERT_TXT is decalred pulic in the module.
When I put the function in the code-behind of the page it works perfectly well, but when I keep the function in the module (which is public as well) it says that
Name 'CONVERT_TXT' is not declared.
Why is that ? Thanks you !
"Taxes are the fees we pay for civilized society" G.W.
<td align="Center"><%#CONVERT_TXT(Container.DataItem("fldACTIVE"))%></td>
The function CONVERT_TXT is decalred pulic in the module.
When I put the function in the code-behind of the page it works perfectly well, but when I keep the function in the module (which is public as well) it says that
Name 'CONVERT_TXT' is not declared.
Why is that ? Thanks you !
"Taxes are the fees we pay for civilized society" G.W.