Reputation: 36826
Now that Silverlight 2.0 has been officially released I was wondering if anyone was using it for any line of business apps, for example POS, Vertical Market apps etc. If so how were your experiences compared to an old WinForms app or Web app?
Upvotes: 4
Views: 903
Reputation: 8828
Have a look at this series of articles by Chris Anderson - I know the fella and he's very into this at the moment. He is developing his own business platform on Silverlight.
Edit: Have a look at this MSDN article too: Create Data-Centric Web Applications With Silverlight 2
Upvotes: 1
Reputation: 6531
I think Silverlight is going to be huge for business applications. This is some bullet points highlighting strengths of Silverlight as a LOB platform inside the browser. It's something i wrote to help a colleague out who was comparing ASP.NET vs. Silverlight, but hopefully it includes some hints.
Extra Silverlight Functionality
Extra Silverlight Controls
WPF portability
Data Entry UX
Visualizations
Copy/paste/select text
Search Engine Optimization
Guess it depends on your customers requirement. If your data should be searchable you can get around it by having ASPX pages that render the data as HTML behind the Silverlight page when it's first loaded. So your site would be something like ShowCustomer.aspx?CustomerID=10 - Silverlight will show customer 10 in the form, and behind the Silverlight component there is HTML representing the same information. Then you would also provide a sitemap file so that Google knows how to index/find the content of your page. But it would be doable.
If your application is very "application like" it might not make sense as it's hard to create URL's to the different states of your application.
Upvotes: 13