IT SOLUTIONS
Your full service technology partner! 
-Collapse +Expand
ASP Classic
Search ASP Classic Group:

Advanced
-Collapse +Expand ASP Classic Store

Prestwood eMagazine

October Edition
Subscribe now! It's Free!
Enter your email:

   ► KBWebsite Scri...ASP ClassicOOP   Print This     
  From the December 2015 Issue of Prestwood eMag
 
ASP Classic OOP:
ASP Classic Member Property (Property..Get..Let)
 
Posted 16 years ago on 12/21/2008 and updated 1/29/2009
ASP Classic Code Snippet:
 A flashcard from our ASP Classic Flashcards Library
 A code snippet from our ASP Classic Code Snippets Page

KB101749

ASP Classic Member Property

ASP classic uses the property keyword and special Get and Let methods to both get and set the values of properties.

Syntax Example:
Class Cyborg
 Private FCyborgName
 
 Public Property Get CyborgName()
  CyborgName = FCyborgName
 End Property
 
 Public Property Let CyborgName(pCyborgName)
  FCyborgName = pCyborgName
 End Property
End Class

Complete Example

The following is a complete example of the class above.

<%@LANGUAGE=VBScript%>
<%Option Explicit%>
<html>
<head><title>Test Page</title></head>
 
<body>
<h1>Introduce Yourself</h1>
<%
Dim Cameron
Set Cameron = new Cyborg
Cameron.CyborgName = "Cameron"
Cameron.IntroduceYourself()
%>
 
</body>
</html>
<%
Class Cyborg
 Private FCyborgName
 
 Public Property Get CyborgName()
  CyborgName = FCyborgName
 End Property
 
 Public Property Let CyborgName(pCyborgName)
  FCyborgName = pCyborgName
 End Property
 
 Public Function IntroduceYourself() 
  Response.Write("Hello, my name is " & CyborgName & ", it's nice to meet you!")
 End Function 
End Class
%> 

More Info


Comments

1 Comments.
Share a thought or comment...
Comment 1 of 1
  • The prospect of winning money attracts many individuals to Online Betting Id with the potential for substantial returns on investment.
Posted 10 days ago
 
Write a Comment...
...
Sign in...

If you are a member, Sign In. Or, you can Create a Free account now.


Anonymous Post (text-only, no HTML):

Enter your name and security key.

Your Name:
Security key = P1116A1
Enter key:
Code Contributed By Mike Prestwood:

Mike Prestwood is a drummer, an author, and creator of the PrestwoodBoards online community. He is the President & CEO of Prestwood IT Solutions. Prestwood IT provides Coding, Website, and Computer Tech services. Mike has authored 6 computer books and over 1,200 articles. As a drummer, he maintains play-drums.com and has authored 3 drum books. If you have a project you wish to discuss with Mike, you can send him a private message through his PrestwoodBoards home page or call him 9AM to 4PM PST at 916-726-5675 x205.

Visit Profile

 KB Article #101749 Counter
16152
Since 12/21/2008
Go ahead!   Use Us! Call: 916-726-5675  Or visit our new sales site: 
www.prestwood.com


©1995-2024 Prestwood IT Solutions.   [Security & Privacy]