I'm using XP and WDS 3.01
When I query for System.Author it gets an error when writing the value.
Error: Type mismatch
I can get all other types (System.Title, System.Subject) and so on
Simple OLEDB + VBScript Example:
"SELECT Top 10 System.ItemName, System.Title, System.Author FROM SystemIndex"
document.write rs("System.ItemName")
document.write rs("System.Title")
document.write rs("System.Author")
Everytime it encounters System.Author there's an error.
I'm catching nulls and empty values.
Tried cStr(rs("System.Author") with no luck.
Also tried VB.Net and it returns System.String[] as the value.
Any suggestions