Search code examples
c#rssnewsletterfeed

Add news to c# application


We have a c# application wich is used by user to do stuff ;-)

What I want is to add at the startpage of the application some news or information like "hey, there is a new update for the application" or "did you know this feature..." Basically I want something similar like the startpage in Visual Studio.

The news should remain when there is no internet connection and update when there are new entires.

What's the best way to do this?

Thanks


Solution

  • Let your application read some data from file located in the server (XML is good idea), Also you must save the current version of your app in some file (or some where).

    So after comparing between the two values you can decide what to show in your news bar.

    To show some news you can just read it from another XML file in the server, Then organized it like you want.

    here is good ways to read XML from server Read an XML file from http address