Converting C# Application to WEB Enabled with ASP.NET .
-
-
ASP.NET provides just the framework to provide a web interface for your application. Your application is written in C#, the language, which is independent of how the application presents itself to the outside world. If you have designed your application properly by separating out the presentation layer from the business logic and database layers then it should be easy to replace the front end your application currently has with an ASP.NET front end. The bottom line is that you will have to write some ASP.NET code, but this will be in addition to what is already there. If you have designed your application badly then you will have to re-write it and no one can help you with that.
Upcoming Scottish Developers events: * UK Security Evangelists On Tour (2nd November, Edinburgh) * Developer Day Scotland: are you interested in speaking or attending? My: Website | Blog
-
ASP.NET provides just the framework to provide a web interface for your application. Your application is written in C#, the language, which is independent of how the application presents itself to the outside world. If you have designed your application properly by separating out the presentation layer from the business logic and database layers then it should be easy to replace the front end your application currently has with an ASP.NET front end. The bottom line is that you will have to write some ASP.NET code, but this will be in addition to what is already there. If you have designed your application badly then you will have to re-write it and no one can help you with that.
Upcoming Scottish Developers events: * UK Security Evangelists On Tour (2nd November, Edinburgh) * Developer Day Scotland: are you interested in speaking or attending? My: Website | Blog
Thanx for your response , I believe the application is written in a good structure , UI is seperate from the business logic because it already written for two user langauges with same functions on same froms , just the UI can be swaped ( Hot swap ) while the application is running to show english language UI Or right side language UI . events in all controls do not contain business code , they tend to call functions or methods carrying that code , no control event holds more than one line of code . May be the reason of my quastion is that I am starting web applications for the first time with ASP.NET . UnitecSoft