The problem is simple: The color "
FloralWhite" is defined (I'm pretty sure in an enumeration) in (as the error message says)
System.Drawing.Color.
Now, why that DLL is not included in his build and not loaded to the production server, I dunno. But either using a <STYLE> as Lee suggested *OR* (I believe) using a number instead of a name should get rid of the dependency on the DLL.
And while Lee's suggestion of using a <STYLE> should get him past that one line 20, he will then run into the line
Code:
Line 22: <CurrentNodeStyle ForeColor="Blue" />
and there's no good way to use a <STYLE> for that. (This might be what he meant when he said he'd tried Lee's suggestion and it didn't work. He is being very reticent in supplying us with details.) So I'd suggest just using color numbers. Perhaps
Code:
<CurrentNodeStyle ForeColor="#0000FF" />
I'm not sure that will do the job. Possibly the compiler will still assume it needs that DLL just because of the
ForeColor= reference. But it's worth a stab.