hi,
This is my array
<%
Dim myFixedArray
myFixedArray(0) = "Albert Einstein"
myFixedArray(1) = "Mother Teresa"
myFixedArray(2) = "Bill Gates"
myFixedArray(3) = "Martin Luther King Jr."
%>
Now i using to get value is
<%
For i=0 to 3
response.write myArray(i) & "<br>"
Next
%>
I need to take "Bill Gates" array Number
I need resut is "2"
How find result with out loop?