Can someone tell me what is wrong here? The MultipleSystems function doesn't seem to be getting called. Am I doing this right?

Thanks!

Code:
<asp:Label id="lblName" runat="server" text = '<%# MultipleSystems("123-12-1234", "321-21-4321") %>'></asp:Label></TD>
VB Code:
  1. Public Function MultipleSystems(ByVal mainsystempn As String, ByVal addsystempn As String) As String
  2.         If chkOtherOptions1.Checked = True Then
  3.             Return mainsystempn + "/" + addsystempn
  4.         Else
  5.             Return mainsystempn
  6.         End If
  7.     End Function