views:

270

answers:

1

Hi,

I have a Silverlight application in witch i can create presentation slides(like in PowerPoint), and i whant to save this slides(XAML and .cs files) in database or somwhere else, where i can be able to load and to use them.

Regard, Andrei.

+2  A: 
  1. You should compile the XAML and .CS files into Silverlight Class Libraries (DLLs)
  2. Store the DLLs in your database
  3. dynamically download the DLLs as needed

Read this article and this article by Dino Esposito in MSDN Magazine.

Michael S. Scherotter