0
Reply

C# 2010 code

dc

dc

May 5 2013 10:13 AM
1.1k
I need to take the main parts of a C# 2008/2010 console application and turn it into a thin client for the web in visual studio 2010. The only things that need to be displayed on the screen is to enter the customer number and where to obtain a file in a directory path. The user will it the enter button and the application will pass the information to a web service.

Notes about the code that will be used: 1. the application uses linq to sql to point to a sql server 2008 r2 database.all parts of the exisitng code is placed together. there is no separation of data, presentation from business logic.

The simple application will not be part of any other web application.

Can you tell me the following:

1. How will the user start the application? Would it be a url on the web and/or a shortcut on their desktop? How would you setup the code for the user to click on a desktop short and/or point to a url? 2. When you start the code from scratch, what kind of a web application would I use? web forms since that is the easiest.