tags:

views:

30

answers:

1

I have table which stores entire XML file in a column. I want to show that column's stored value (ie. XML ) in web-browser using C#.

Please help/suggest some way to implement this. The trick is to retrieve the column and need to be displayed in webbrowser control.

Please suggest.

Thanks, Karthick

A: 

For the record, here is the solution you decided to use:

  1. Retrieve the column from SQL server
  2. Write the XML to a file using StreamWriter
  3. Navigate to that XML Path using the WebBrowser control.
magnifico