Mid Function
Returns a number of characters from any position in a string.

Function Name:Mid
Syntax: Mid(string, start[,length])

string - is a string you want to extract characters from.
start - is the starting position that you to start extracting characters
from.
length - (OPTIONAL) is the number of characters you want to extract.

Example:Mid("Find ME in here", 6, 2)
This example will start "grabbing" characters from the 6th position or the
"M" and will keep on "grabbing" for two postions and will end at the "E".

OutPut:ME

----- Original Message -----
From: "Tiffany Blake" <[EMAIL PROTECTED]>
To: "ActiveServerPages" <[EMAIL PROTECTED]>
Cc: "Chris Martin" <[EMAIL PROTECTED]>
Sent: Monday, November 04, 2002 6:26 PM
Subject: what does this mean?


> can someone interpret this block of code?  specifically, what is
"tabindex" and =mid(...)  thanks
>
> <select size="1" name="CourseLevel" tabindex="6">
>
>   <option selected
value="<%=strCourseLevel%>"><%=mid(strCourseLevel,3)%></option>
>           <option value="2-Beginner">Beginner</option>
>           <option value="3-Intermediate">Intermediate</option>
>           <option value="4-Advanced">Advanced</option>
>   <option value="5-Refresher">Refresher</option>
>          </select>
>
> ---
> You are currently subscribed to activeserverpages as: [EMAIL PROTECTED]
> To unsubscribe send a blank email to
%%email.unsub%%
>


---
You are currently subscribed to activeserverpages as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to