complicated xml in datagrid
-
Anyone knows how to convert the following xml contents into a datagrid using asp.net? In the datagrid, there shall be 4 columns: listenPort,schemeAndHostPort,maxConnections,readTimeoutSeconds. I heard that I can use xslt in the asp.net application. but in this case how can i do it?? - This is a sample mnitor config file - 3600 1 - - This redirects to a local machine 9090 http://localhost:80 1000 30 - This redirects to another machine 8080 http://172.17.168.112:80 1000 30 Han
-
Anyone knows how to convert the following xml contents into a datagrid using asp.net? In the datagrid, there shall be 4 columns: listenPort,schemeAndHostPort,maxConnections,readTimeoutSeconds. I heard that I can use xslt in the asp.net application. but in this case how can i do it?? - This is a sample mnitor config file - 3600 1 - - This redirects to a local machine 9090 http://localhost:80 1000 30 - This redirects to another machine 8080 http://172.17.168.112:80 1000 30 Han
Like I said in the other post, you need to provide a snippet of code to load a dataset object from the XML document, more exactly from the the
wsi-monConfig:manInTheMiddle
node. The links below might get you started: Loading a DataSet from XML[^] Employing XML in the .NET Framework[^] If you want to use XSLT to transform the XML data, then you need to read the documentation about XSLT: XSLT Transformations with the XslTransform Class[^] XSLT Developer's Guide[^]