broadvision123
Jun 8th, 2005, 09:17 AM
Can someone tell me what is wrong here? The MultipleSystems function doesn't seem to be getting called. Am I doing this right?
Thanks!
<asp:Label id="lblName" runat="server" text = '<%# MultipleSystems("123-12-1234", "321-21-4321") %>'></asp:Label></TD>
Public Function MultipleSystems(ByVal mainsystempn As String, ByVal addsystempn As String) As String
If chkOtherOptions1.Checked = True Then
Return mainsystempn + "/" + addsystempn
Else
Return mainsystempn
End If
End Function
Thanks!
<asp:Label id="lblName" runat="server" text = '<%# MultipleSystems("123-12-1234", "321-21-4321") %>'></asp:Label></TD>
Public Function MultipleSystems(ByVal mainsystempn As String, ByVal addsystempn As String) As String
If chkOtherOptions1.Checked = True Then
Return mainsystempn + "/" + addsystempn
Else
Return mainsystempn
End If
End Function