S
SimonZ
How can you call function from aspx page?
For example:
button on aspx page:
<asp:button Visible="<% =funcVisible()%>" id="btnNew"
Runat="server"></asp:button>
code behind function:
Public Function funcVisible() As Boolean
funcVisible = False
End Function
This won't work.
Regards,S
For example:
button on aspx page:
<asp:button Visible="<% =funcVisible()%>" id="btnNew"
Runat="server"></asp:button>
code behind function:
Public Function funcVisible() As Boolean
funcVisible = False
End Function
This won't work.
Regards,S