Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
Actually we were using windows application for our employee compensation review operations which is conducted every year...as this is huge data driven app..we were using windows app....can anybody suggest me any better solution can be implemented to improve performance...and if we have to migrate to web...what is better approach...and ideas please....?
Posted
Comments
[no name] 7-Jul-11 2:52am    
What are your machines configurations?

Moving to a web application does not necessarily increase your performance. This is because you introduce an extra data transfer, which is between the browser and the ASP.NET application where ASP.NET gets it from SQL Server. In a Windows application you do not have this data transfer, because all the data is directly loaded to the client from the SQL Server.

It sounds like your real performance bottleneck lies in your SQL Server and/or the queries you are using. If you don't change anything in those and port the application directly to ASP.NET, you most likely will not resolve your performance issues. Instead I would suggest that you start profiling the database and the queries you are executing to find out what is making it so slow.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 7-Jul-11 3:15am    
Agree, my 5. I would guess just migrating to Web application can only make things worse.
--SA
Migrating to web is very much better,

for this the good technologies are ASP.net,C# and the best database is SQL server
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900