Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 ASP.NET
 Centralized system

Author  Topic 

swatib
Posting Yak Master

173 Posts

Posted - 2006-04-25 : 03:17:47
Hi All

I have one doubt related to .NET

Suppose I want to design a Centralized system with 5 branches and one head office. The HO can access all branches data.

The system at all branches just track the data. Two branches are not dependent for any transaction. It can be developed as standalone deaktop application using VB.

In this situation of centralized data which preferable - VB.NET or ASP.NET?


Thanks in advance

Njoy Life

dfiala
Posting Yak Master

116 Posts

Posted - 2006-04-25 : 08:41:55
Remember, VB.NET is a language. You can use it to develop desktop (WinForms) applications, web (ASP.NET) applications, services, console applications, etc. You can also use C#, J#, C++, etc. for any of these.

That being said, your problem could be solved by either approach, but I think you will find it is better suited to a web application. A web app will be easier to maintain and update. It will also allow you to use easily HTTP, (or HTTPS) to communicate with a central data store over a WAN. There is no extra work to do. If you build a traditional client server application, you will need to invest in developing a communication channel, either via Remotting or web services .
Go to Top of Page

swatib
Posting Yak Master

173 Posts

Posted - 2006-04-28 : 02:36:24
Thanks
Another one question.
I have a VB application for a project. We have to remodified it and add new things to the existing.

which option is more perfect solution
1. Made the changes in VB itself
2. Create it using .NET (win forms)

Thanks again



Njoy Life
Go to Top of Page

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2006-04-28 : 04:13:53
If you want to migrate from vb to .NET, then create new .NET project and work with that by applying the logic used in vb application.

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page

swatib
Posting Yak Master

173 Posts

Posted - 2006-04-28 : 04:20:03
Madhivanan, my question was different. What I wanted to know which solution will be preferable- .NET or the same VB in my situation

Njoy Life
Go to Top of Page

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2006-04-28 : 04:27:46
If there are small changes in the existing VB application, then do it in VB. If it needs major changes that force you to start from beginning then go for .NET

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page

swatib
Posting Yak Master

173 Posts

Posted - 2006-04-28 : 04:45:22
Ok Let's see. for .net migration i also have to think the developement time needed.

Thanks

Njoy Life
Go to Top of Page
   

- Advertisement -