|
| ||||||||||
| Tags: asp, associative array, comparemode, count, dictionary object |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| What are the Dictionary Object in ASP?
I have just started doing the tasks in ASP. I have completed the basic programs in ASP. But I don't know what is the Dictionary Object in ASP.?? Please explain me with some examples, so that it will be better for me to understand. Any coding related to the topic would be greatly appreciable. Help me soon..!! ![]()
__________________ Processor: AMD Athlon(tm) 64 X2 Dual Core @ ~2.2 GHz Memory: 1024MB RAM Hard Drive: 200 GB Video Card: RADEON X300/X550 Series |
|
#2
| ||||
| ||||
| Re: What are the Dictionary Object in ASP?
The Dictionary object stores information in name/value pairs. The Asp dictionary object allows you to store information in data key, item pairs. The Dictionary object is like an associative array, but with its own built-in functionality. This dictionary object also looks after the basic tasks of storing and manipulating the data, and sizing for the required number of elements. However, the Dictionary object is a more desirable solution to manipulate related data. Also you should know that each item in the Dictionary object is associated with a unique key. |
|
#3
| ||||
| ||||
| Re: What are the Dictionary Object in ASP?
Before using the dictionary object, there are somethings that should be kept in mind. These things are described as follows :
|
|
#4
| ||||
| ||||
| Re: What are the Dictionary Object in ASP?
The following are some Asp Dictionary Object Methods :
|
|
#5
| ||||
| ||||
| Re: What are the Dictionary Object in ASP?
According to me, you should also know the properties of Asp Dictionary Object. So I have mentioned the properties below :
|
|
#6
| ||||
| ||||
| Re: What are the Dictionary Object in ASP?
For creating the dictionary object, you can use the following code : Code: <% Dim objDictionary Set objDictionary = CreateObject(Scripting.Dictionary) objDictionary.Add "pet", "Cat" objDictionary.Add "jeep", "Scorpio" dim strkey,strvalue strkey = "Flower" strvalue = "Rose" objDictionary.Add strkey,strvalue %>
__________________ "When they give you ruled paper, write the other way..." J.R.J. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "What are the Dictionary Object in ASP?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Getting HP AIO Device object server register class object failed message on my system | Donoho | Hardware Peripherals | 6 | 06-06-2011 01:34 AM |
| Scope of Object or variable in Object oriented Programming Languages | Dėfrim | Software Development | 3 | 08-01-2011 05:20 AM |
| Differents between object and static object | Sarfaraj Khan | Software Development | 5 | 29-01-2010 12:11 PM |
| Object reference not set to an instance of an object | KAIRU26 | Software Development | 3 | 05-09-2009 08:14 PM |
| Object test = new Object() <-- Java, best way in C++ | ADISH | Software Development | 3 | 25-10-2008 02:32 PM |