junky_user
junky_user

Reputation: 385

Experience of developing web version of a desktop application

We are in the process of starting a web version of desktop application developed in Winforms in vs2008 with linq-to-sql.Has anyone ever done such an implementation? What issues you faced when reusing code for web version?

Upvotes: 0

Views: 58

Answers (2)

masoud ramezani
masoud ramezani

Reputation: 22920

if you design your application with n-tier architecture, thus you must have separated logic and data access and UI layers. with this architecture you don't need that write logic and data access layers. only write a new web ui for this.

Upvotes: 0

No Refunds No Returns
No Refunds No Returns

Reputation: 8336

if you partitioned your business logic and data layer into well-separated objects, it works well. But if you have UI logic scattered throughout it's gonna be painful. My advice: separate projects and unit test for UI, Business Objects, Business Logic and Data and use interfaces between each layer. Done it multiple times and it provides the best way . Of course you're already tied into an existing system.

Upvotes: 1

Related Questions