当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > asp.net 按字节检查包含全半角的文字

ASP.NET
细细品味ASP.NET(一)
细细品味ASP.NET(二)
细细品味ASP.NET(三)
细细品味ASP.NET(四)
细细品味ASP.NET(五)
用asp.net和xml做的新闻更新系统(1)
用asp.net和xml做的新闻更新系统(2)
用asp.net和xml做的新闻更新系统(3)
十天学会ASP.net(1)
十天学会ASP.net(2)
十天学会ASP.net(3)
十天学会ASP.net(4)
十天学会ASP.net(5)
十天学会ASP.net(6)
十天学会ASP.net(7)
十天学会ASP.net(8)
十天学会ASP.net(9)
十天学会ASP.net(10)
ASP.NET创建XML Web服务全接触(1)
ASP.NET创建XML Web服务全接触(2)

ASP.NET 中的 asp.net 按字节检查包含全半角的文字


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 174 ::
收藏到网摘: n/a

(VB.Net) 这个方法用于检查又有全角字符,又有半角字符的写入信息很有用的! '''------------------------------------------------------------------------
''' <summary>
''' 文字列長检查(按字节检查)
''' </summary>
''' <param name="argStrControl">文字列</param>
''' <param name="argLength">文字列長</param>
''' <returns>True - , False - </returns>
''' <remarks></remarks>
'''------------------------------------------------------------------------
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 < iLength Then
Return False
End If
Return True
End Function