| |
| |
|
| |
Code
conversion and Migration – ASP.Net |
| |
|
| |
|
| |
|
| |
In the migration process, both application's presentation and business logic will be moved to server page and business object respectively. The server page scripts will be as HTML/ASP.Net scripts, where as the business object scripts as VB.Net scripts. |
| |
|
| |
Presentation
Logic - The scripts like menu navigation, enable/disable
the menu and tool bars, enable/disable the window or user
object controls will be moved in to the server pages. |
| |
|
| |
Business
Logic - The scripts from the window events, functions,
user objects, datawindow control events, button events
as part of the data validation, retrieve and update, which
require the database connection, as business objects.
|
| |
|
| |
Global
Variables - Any global variables used in the presentation
or business logic is converted as a page session variable,
where, it is needed by the server pages or by the business
objects. |
| |
|
| |
Global
Functions - The global functions, which are part
of the business logic, are converted as business objects.
|
| |
|
| |
|
|
|
|
|