Click here to Skip to main content
15,917,174 members
Home / Discussions / C#
   

C#

 
QuestionSolving (string) and creating the screen - Ex.: CreateScreen("screenTest") Pin
User 68218818-Feb-10 4:06
User 68218818-Feb-10 4:06 
AnswerRe: Solving (string) and creating the screen - Ex.: CreateScreen("screenTest") Pin
Not Active8-Feb-10 4:20
mentorNot Active8-Feb-10 4:20 
GeneralRe: Solving (string) and creating the screen - Ex.: CreateScreen("screenTest") Pin
User 68218818-Feb-10 4:38
User 68218818-Feb-10 4:38 
AnswerRe: Solving (string) and creating the screen - Ex.: CreateScreen("screenTest") Pin
V.8-Feb-10 4:24
professionalV.8-Feb-10 4:24 
GeneralRe: Solving (string) and creating the screen - Ex.: CreateScreen("screenTest") Pin
User 68218818-Feb-10 4:37
User 68218818-Feb-10 4:37 
AnswerRe: Solving (string) and creating the screen - Ex.: CreateScreen("screenTest") [modified] Pin
rhuiden8-Feb-10 4:43
rhuiden8-Feb-10 4:43 
GeneralRe: Solving (string) and creating the screen - Ex.: CreateScreen("screenTest") Pin
User 68218818-Feb-10 11:47
User 68218818-Feb-10 11:47 
Questioncontrols in richtextbox Pin
asdf232118-Feb-10 3:19
asdf232118-Feb-10 3:19 
QuestionMultiple Clients Running One Server Application Pin
Bob Steel-Smith8-Feb-10 3:16
Bob Steel-Smith8-Feb-10 3:16 
AnswerRe: Multiple Clients Running One Server Application Pin
Keith Barrow8-Feb-10 3:42
professionalKeith Barrow8-Feb-10 3:42 
GeneralRe: Multiple Clients Running One Server Application Pin
Bob Steel-Smith8-Feb-10 4:23
Bob Steel-Smith8-Feb-10 4:23 
GeneralRe: Multiple Clients Running One Server Application Pin
Keith Barrow8-Feb-10 5:23
professionalKeith Barrow8-Feb-10 5:23 
GeneralRe: Multiple Clients Running One Server Application Pin
Bob Steel-Smith8-Feb-10 7:01
Bob Steel-Smith8-Feb-10 7:01 
GeneralRe: Multiple Clients Running One Server Application Pin
Keith Barrow8-Feb-10 9:29
professionalKeith Barrow8-Feb-10 9:29 
GeneralRe: Multiple Clients Running One Server Application Pin
Bob Steel-Smith8-Feb-10 16:34
Bob Steel-Smith8-Feb-10 16:34 
GeneralRe: Multiple Clients Running One Server Application Pin
Keith Barrow8-Feb-10 23:40
professionalKeith Barrow8-Feb-10 23:40 
I was in your position a while ago, so I feel your pain.

I assumed you were working as part of a dev team, and further assumed (as a consequence) that there was a reason why your aspx pages were communicating directly with the ERP system. As this isn't the case another thing you really should consider is a 3-tier architecture. This is where the website talks to a Web/WCF service, and the service talks to the ERP and Database systems.

The main advantages of a 3-tier architecture are

a) Each layer can be made to deal with its own stuff, and only its own cleanly, which will improve code quality and maintainability
b) If you need to write something else (e.g. a Winforms app, automatic service) to interact with the ERP system you can call the service directly.
c) You can replace any given layer in the stack more readily.
d) Scalability
e) [Most useful for your immediate problem] The user can interact with the ASP site, the site fires the update to the server (which returns and continues to process in the background). Which is the requirement you need right now.

Googling for the term 3-tier architecture or n-Tier architecture should provide more guidance.

Good luck, should be fun!
Antoine de Saint-Exupery: Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.

QuestionData sync between two sql server? Pin
Tridip Bhattacharjee8-Feb-10 2:22
professionalTridip Bhattacharjee8-Feb-10 2:22 
AnswerRe: Data sync between two sql server? Pin
Not Active8-Feb-10 2:55
mentorNot Active8-Feb-10 2:55 
AnswerRe: Data sync between two sql server? Pin
Giorgi Dalakishvili8-Feb-10 19:47
mentorGiorgi Dalakishvili8-Feb-10 19:47 
QuestionHigh DPI Issue Pin
musefan8-Feb-10 1:42
musefan8-Feb-10 1:42 
QuestionReturning web controls from a web service Pin
Vaibhav06108-Feb-10 1:27
Vaibhav06108-Feb-10 1:27 
AnswerRe: Returning web controls from a web service Pin
Not Active8-Feb-10 2:00
mentorNot Active8-Feb-10 2:00 
AnswerRe: Returning web controls from a web service Pin
kevinnicol8-Feb-10 2:20
kevinnicol8-Feb-10 2:20 
QuestionUsing SQL Application in network Pin
Reza Shojaee8-Feb-10 0:07
Reza Shojaee8-Feb-10 0:07 
AnswerRe: Using SQL Application in network Pin
42774808-Feb-10 0:17
42774808-Feb-10 0:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.