我在母版页中使info()函数,我想在内容页中访问此函数。但是我无法在内容页中访问info()函数。代码中的new_user和register_user是标签。 母版页功能是:
Public Sub info(ByVal a As Integer)
If a = 1 Then
new_user.Visible = False
register_user.Visible = True
Else
new_user.Visible = True
register_user.Visible = False
End If
End Sub
在内容页面中无法访问