asp中怎么比对两个字符串是否相同
<%MyStr1="abcd"MyStr2="abcd"MyComp=StrComp(MyStr1,MyStr2,1)ifMyComp=0thenresponse.Wri...
<%
MyStr1 = "abcd"
MyStr2 = "abcd"
MyComp = StrComp(MyStr1,MyStr2,1)
if MyComp=0
then
response.Write "一样"
else
response.Write "不一样"
end if
%> 展开
MyStr1 = "abcd"
MyStr2 = "abcd"
MyComp = StrComp(MyStr1,MyStr2,1)
if MyComp=0
then
response.Write "一样"
else
response.Write "不一样"
end if
%> 展开
展开全部
<%
MyStr1 = "abcd"
MyStr2 = "abcd"
MyComp = StrComp(MyStr1,MyStr2,1)
if MyComp=0 then
response.Write "一样"
else
response.Write "不一样"
end if
%>
也可以直接比较:
<%
MyStr1 = "abcd"
MyStr2 = "abcd"
if MyStr1 = MyStr2 then
response.Write "一样"
else
response.Write "不一样"
end if
%>
MyStr1 = "abcd"
MyStr2 = "abcd"
MyComp = StrComp(MyStr1,MyStr2,1)
if MyComp=0 then
response.Write "一样"
else
response.Write "不一样"
end if
%>
也可以直接比较:
<%
MyStr1 = "abcd"
MyStr2 = "abcd"
if MyStr1 = MyStr2 then
response.Write "一样"
else
response.Write "不一样"
end if
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询