web 2.0

ASP/VBScript StrComp()

ASP/VBScript StrComp() Returns -1, 0, or 1, based on the result of a string comparison.

ShotDev Focus:
- Using Asp and StrComp() function.

Example

asp_strcomp.asp


<% Option Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Response.write StrComp("a","b")&"<br>"
Response.write StrComp("b","a")&"<br>"
Response.write StrComp("www.ShotDev.Com","www.ShotDev.Com")&"<br>"
Response.write StrComp("www.ShotDev.Com","Mr.Weerachai Nukitram")&"<br>"
Response.write StrComp("Mr.Weerachai Nukitram","www.ShotDev.Com")&"<br>"
%>
</body>
</html>

Create a asp file and save to path root-path/myasp/

Run
http://localhost/myasp/asp_strcomp.asp

Screenshot

ASP/VBScript & StrComp()

.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.