hi there,
the problem seems to me to be with IE9 compatability modes. Have you tried clicking the compatability view button in IE?
Switching modes should make your vwg controls visible
This is not obvious to user though - most people wouldn;t even think of clicking it to see if the contents appeared - Palli mentioned that he totally removed the DOCTYPE directive - all that does though is force IE to operate in "Quirks Mode" which is the same as if you do set compatability mode on.
The problem as far as i can tell is that the DOCTYPE on an IFrame in IE is now ignored and it is inherited from the parent page containing the iframe
If you set the DOCTYPE on the parent page to html 4.0 then your vwg iframe contents will probably become visible
<!DOCTYPE html PUBLIC "-//W3C//DTD html 4.0 Transitional//EN">
Cheers james