Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

<Object> value attribute ... MSODSC

Status
Not open for further replies.

WMitchellCPQ

Programmer
Sep 28, 2001
54
US
Im using the Microsoft Office web component - MSODSC a grid view.

In some of the sample code ive come across the object value attribute contains a reference to some XML data see example below.

<OBJECT id=MSODSC classid=CLSID:0002E530-0000-0000-C000-000000000046>
<PARAM NAME=&quot;XMLData&quot; VALUE='<xml xmlns:a=&quot;urn:schemas-microsoft-com:eek:ffice:access&quot;>&#13;&#10; <a:DataSourceControl>&#13;&#10; <a:OWCVersion>9.0.0.3821</a:OWCVersion>&#13;&#10; <a:ConnectionString>Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial ..... Lots more value data'/><OBJECT>

Id like to be able to turn this data into an external XML page however when I do and change the VALUE attribute to point to my new XML page it breaks the webpage.

Ideally Id Like the following ...

<OBJECT id=MSODSC classid=CLSID:0002E530-0000-0000-C000-000000000046>
<PARAM NAME=&quot;XMLData&quot; VALUE=&quot;XMLpage.xml&quot;/></OBJECT>


Ive tried various combinations of new attribute tags including HREF , SRC and ive even added the CODEBASE attribute. Alas to no avail.

Any Ideas ? Im going mad having to horizontally scroll so much to view this XML data.

Cheers
Will
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top