|
I am currently working on an RSS application. What I need to achieve is to display RSS data in real time on winform. The RSS feed is provided by each http server (that is, the URL of a composite RSS standard XML file).
I have listed two options for displaying RSS items on winform, please refer to:
1.Put a WebBrowser control on a winform form, and then write an asp.net page about reading rss information and load this page into the WebBrowser control. Disadvantages: This will cause inconvenience to program installation and deployment, because The aspx page needs to be installed on the web server, and the virtual directory must be configured.It is not possible to install IIS on each client machine and configure it accordingly.
2.On a winform form, complete directly with data display controls such as DataGridview or ItemList.The obtained rss data is converted into a DataSet through the DOM object and loaded into each data display control.
However, the above two solutions do not feel perfect, I hope there can be a better solution, please advise me! Thank you. |
|