Delimiter between fields.
if ( document.forms[0].elements[e].type.indexOf("select") == 0 && document.forms[0].elements[e].name.indexOf(prefix + ":lstProperties") == 0 )
In the above line of Javascript code, in VS2003, the app was looking for a ':' as a delimiter. In VS2005, this code quit working, it was now looking for a '$'
":lstProperties" ====> "$lstProperties"
However, we have had circumstances where on a VS2003 app, it may be run on a different environment when deployed to anther server. (not ideal I know) So I am looking for a system field that holds the value of this delimiter, so I can output it, and know what delimiter it is looking for.
-smc