如何如何如何......
用left 或mid应该都可以的
str="你的内容"
left(str,300)
if len(str)>300 then
response.write "..."
end if
大概就是这样,楼主是这个意思吗?
一样的写法
left(rs("A"),300)
Left 函数
返回指定数目的从字符串的左边算起的字符。
Left(string, length)
下面的示例利用Left 函数返回MyString 的左边三个字母:
Dim MyString, LeftString
MyString = "VBSCript"
LeftString = Left(MyString, 3) 'LeftString 包含 "VBS"。
Mid 函数
从字符串中返回指定数目的字符。
Mid(string, start[, length])
本例使用 Mid 函数从字符串返回指定数量的字符。
Dim MyString, FirstWord, LastWord, MidWords As String
MyString = "Mid Function Demo" ' Creates text string.
FirstWord = Mid(MyString, 1, 3) ' Returns "Mid".
LastWord = Mid(MyString, 14, 4) ' Returns "Demo".
MidWords = Mid(MyString, 5) ' Returns "Function Demo".