怎么操作asp.net 按字节检查包含全半角的文字
'''------------------------------------------------------------------------
'''
''' 文字列長检查(按字节检查)
'''
''' 文字列
''' 文字列長
'''
'''
'''------------------------------------------------------------------------
Public Shared Function CheckControlLength(ByVal argStrControl As String, _
Optional ByVal argLength As Integer = 0) As Boolean
'NULL
If String.IsNullOrEmpty(argStrControl) Then
Return True
End If
'文字列長
Dim iLength As Integer = 0
iLength = pEncoding.GetBytes(argStrControl).Length()
'文字列長检查
If argLength
Return False
End If
Return True
End Function
以上内容就是爱站技术频道小编为大家分享的怎么操作asp.net 按字节检查包含全半角的文字,看完以上分享之后,大家应该都知道怎么去操作了吧。
下一篇:调用.aspx页面的两种方法