Andrei Bularca
Andrei Bularca

Reputation: 1024

Save XAML file in database

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.

Upvotes: 0

Views: 954

Answers (1)

Michael S. Scherotter
Michael S. Scherotter

Reputation: 10785

  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.

Upvotes: 2

Related Questions