ASP Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript



ASP Examples

ASP String
ASP Byte Array
Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
S/MIME
Socket
Spider
RSA Encryption
Tar
ASP Upload
XML
XMP
Zip Compression

More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA

Unreleased...
Bzip2
LZW
Bz2
Icon

 

 

 

 

 

 

GetBaseDomain

The GetBaseDomain method is a utility function that converts a domain into a "domain base", which is useful for grouping URLs. For example: abc.chilkatsoft.com, xyz.chilkatsoft.com, and blog.chilkatsoft.com all have the same base domain: chilkatsoft.com. Things get more complicated when considering country domains (.au, .uk, .se, .cn, etc.) and government, state, and .us domains. Also, domains such as blogspot, tripod, geocities, wordpress, etc, are treated specially so that "xyz.blogspot.com" has a base domain of "xyz.blogspot.com". Note: If you find other domains that should be treated similarly to blogspot.com, send a request to support@chilkatsoft.com.

Download Chilkat Spider ActiveX

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' The Chilkat Spider component/library is free.
set spider = Server.CreateObject("Chilkat.Spider")

Response.Write spider.GetBaseDomain("www.chilkatsoft.com") & "<br>"
Response.Write spider.GetBaseDomain("blog.chilkatsoft.com") & "<br>"
Response.Write spider.GetBaseDomain("www.news.com.au") & "<br>"
Response.Write spider.GetBaseDomain("blogs.bbc.co.uk") & "<br>"
Response.Write spider.GetBaseDomain("xyz.blogspot.com") & "<br>"
Response.Write spider.GetBaseDomain("www.heaids.org.za") & "<br>"
Response.Write spider.GetBaseDomain("www.hec.gov.pk") & "<br>"
Response.Write spider.GetBaseDomain("www.e-mrs.org") & "<br>"
Response.Write spider.GetBaseDomain("cra.curtin.edu.au") & "<br>"

' Prints:
' chilkatsoft.com
' chilkatsoft.com
' news.com.au
' bbc.co.uk
' xyz.blogspot.com
' heaids.org.za
' hec.gov.pk
' e-mrs.org
' curtin.edu.au

%>
</body>
</html>

 

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2008 Chilkat Software, Inc. All Rights Reserved.