473,769 Members | 2,214 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Developing for EXE and ASP

Could someone give me a few bullet point notes on how I go about developing
a system that can be deployed both as an ASP intranet as well as a stand
alone EXE.

In essence we are aiming to provide both ASP/EXE to our clients, but to try
an minimise the amount of development work involved with maintaining the
applications. This would take over from a standard ASP Intranet and
stand-alone Access applications (of course, the latter being a key decision
to make this move).

The development would be completed with VB.Net and/or Visual Studio .NET

Regards,

Sean

Apr 10 '07 #1
14 1316
On Apr 10, 11:32 am, "Sean" <sean.anderso n@[nospam]oakleafgroup.bi z>
wrote:
Could someone give me a few bullet point notes on how I go about developing
a system that can be deployed both as an ASP intranet as well as a stand
alone EXE.

In essence we are aiming to provide both ASP/EXE to our clients, but to try
an minimise the amount of development work involved with maintaining the
applications. This would take over from a standard ASP Intranet and
stand-alone Access applications (of course, the latter being a key decision
to make this move).

The development would be completed with VB.Net and/or Visual Studio .NET

Regards,

Sean
ASP or ASP.Net?

Thanks,

Seth Rowe

Apr 10 '07 #2


"Sean" <sean.anderso n@[nospam]oakleafgroup.bi zwrote in message
news:11******** ******@kestrel. skynet.co.uk...
Could someone give me a few bullet point notes on how I go about
developing a system that can be deployed both as an ASP intranet as well
as a stand alone EXE.

In essence we are aiming to provide both ASP/EXE to our clients, but to
try an minimise the amount of development work involved with maintaining
the applications. This would take over from a standard ASP Intranet and
stand-alone Access applications (of course, the latter being a key
decision to make this move).

The development would be completed with VB.Net and/or Visual Studio .NET

Regards,

Sean

Well, this is one thing n-tier applications allow. What you need to do (if
you go this route) is to create ui-independent business and data logic
layers that contain most of your non-ui code. The Business Logic layer
provides the actual business logic (data validation, massaging, etc) while
the Data Access layer provides the meat for accessing
(fetch/update/delete/insert) of the data into the data store.

You still need to write two apps in this case...

Another way would be to make your app an HTML application (with the .hta
extension). This makes a single UI that can be used from Internet Explorer
but downloads and runs as an application. I've gone this route before, but
we did have hurdles/hoops to jump through.

HTH,
Mythran
Apr 10 '07 #3
"Sean" <sean.anderso n@[nospam]oakleafgroup.bi zwrote in
news:11******** ******@kestrel. skynet.co.uk:
Could someone give me a few bullet point notes on how I go about
developing a system that can be deployed both as an ASP intranet as
well as a stand alone EXE.

You have two main options:

1. Create the back end logic as a web service - this way all clients will
use the same logic for all critical functions (i.e. save, retrieve, etc).

2. Or place your application logic into a DLL... and use the DLL as the
foundation for your application (ASP, Desktop, etc).

Problem with #2 is that if a client has an outdated EXE... it's going to
use outdated logic. Also if you're deploying to hundreds of clients... it
could be a pain to update.

So it depends on how much logic you wish to keep control over ... but web
services is definately a consideration for your situation.
Apr 10 '07 #4
Sean,

First you have to ask yourself if your clients trust you.
(Let say the same as you trust Microsoft as it is about the Word Program).

If that is the fact, you don't need an HTML (by you called ASP) program, you
can supply everybody a nice EXE program in the same way as Microsoft does it
with word by using the inbuild Click Once deployment method.

Cor

"Sean" <sean.anderso n@[nospam]oakleafgroup.bi zschreef in bericht
news:11******** ******@kestrel. skynet.co.uk...
Could someone give me a few bullet point notes on how I go about
developing a system that can be deployed both as an ASP intranet as well
as a stand alone EXE.

In essence we are aiming to provide both ASP/EXE to our clients, but to
try an minimise the amount of development work involved with maintaining
the applications. This would take over from a standard ASP Intranet and
stand-alone Access applications (of course, the latter being a key
decision to make this move).

The development would be completed with VB.Net and/or Visual Studio .NET

Regards,

Sean


Apr 11 '07 #5

"rowe_newsgroup s" <ro********@yah oo.comwrote in message
news:11******** **************@ n59g2000hsh.goo glegroups.com.. .
On Apr 10, 11:32 am, "Sean" <sean.anderso n@[nospam]oakleafgroup.bi z>
wrote:
>Could someone give me a few bullet point notes on how I go about
developing
a system that can be deployed both as an ASP intranet as well as a stand
alone EXE.

In essence we are aiming to provide both ASP/EXE to our clients, but to
try
an minimise the amount of development work involved with maintaining the
applications . This would take over from a standard ASP Intranet and
stand-alone Access applications (of course, the latter being a key
decision
to make this move).

The development would be completed with VB.Net and/or Visual Studio .NET

Regards,

Sean

ASP or ASP.Net?

Thanks,

Seth Rowe
Proposed solution would be in .NET as I understand that it's possible to
have a .NET solution that could be deployed as both ASP.NET (for the
Intranet) and VB.NET (for the stand-alone application).

Apr 11 '07 #6

"Cor Ligthert [MVP]" <no************ @planet.nlwrote in message
news:uu******** ******@TK2MSFTN GP04.phx.gbl...
Sean,

First you have to ask yourself if your clients trust you.
(Let say the same as you trust Microsoft as it is about the Word
Program).

If that is the fact, you don't need an HTML (by you called ASP) program,
you can supply everybody a nice EXE program in the same way as Microsoft
does it with word by using the inbuild Click Once deployment method.

Cor

Trust with our clients isn't an issue, it's a bespoke system that is bought
on contractual terms with all the why's and wherefore's for security clearly
detailed in the contracts.

The project (as it presently stands) is in two parts, because of a few
details:

(1) Data entry is carried out (primarily) from one department of a big
organisation.
-- Either solution is viable

(2) Not all clients have a Web Server (or not one that we can utilise).
-- Only a stand-alone is viable

(3) Some clients wish to share data (in read-only format) to others in
the organisation.
-- Known prerequisite for an Intranet.

I am not sure what you mean by "the inbuild Click Once deployment method" ?

Apr 11 '07 #7

"Spam Catcher" <sp**********@r ogers.comwrote in message
news:Xn******** *************** ***********@127 .0.0.1...
"Sean" <sean.anderso n@[nospam]oakleafgroup.bi zwrote in
news:11******** ******@kestrel. skynet.co.uk:
>Could someone give me a few bullet point notes on how I go about
developing a system that can be deployed both as an ASP intranet as
well as a stand alone EXE.


You have two main options:

1. Create the back end logic as a web service - this way all clients will
use the same logic for all critical functions (i.e. save, retrieve, etc).

2. Or place your application logic into a DLL... and use the DLL as the
foundation for your application (ASP, Desktop, etc).

Problem with #2 is that if a client has an outdated EXE... it's going to
use outdated logic. Also if you're deploying to hundreds of clients... it
could be a pain to update.

So it depends on how much logic you wish to keep control over ... but web
services is definately a consideration for your situation.
#1 isn't possible as not all clients have a webserver that we can utilise.

For updates, there are (at most) only a handful of data entry clerks that
would use the stand-alone application and they're all in the same department
so easy to update.

Seems like a n-tier is the way to go, but from what I have read here (and
the other replies), I don't see a benefit here from using .NET and DLL's
over writing a solution with VB, ASP and DLL's. With the steep learning
curve that we will encounter on .NET ... seems to make sense to stick with
VB/ASP as this is well trodden ground from which there will be far fewer
hurdles/hoops to deal with.

Apr 11 '07 #8

"Mythran" <ki********@hot mail.comwrote in message
news:eu******** *****@TK2MSFTNG P05.phx.gbl...
>

"Sean" <sean.anderso n@[nospam]oakleafgroup.bi zwrote in message
news:11******** ******@kestrel. skynet.co.uk...
>Could someone give me a few bullet point notes on how I go about
developing a system that can be deployed both as an ASP intranet as well
as a stand alone EXE.

In essence we are aiming to provide both ASP/EXE to our clients, but to
try an minimise the amount of development work involved with maintaining
the applications. This would take over from a standard ASP Intranet and
stand-alone Access applications (of course, the latter being a key
decision to make this move).

The development would be completed with VB.Net and/or Visual Studio .NET

Regards,

Sean


Well, this is one thing n-tier applications allow. What you need to do
(if you go this route) is to create ui-independent business and data logic
layers that contain most of your non-ui code. The Business Logic layer
provides the actual business logic (data validation, massaging, etc) while
the Data Access layer provides the meat for accessing
(fetch/update/delete/insert) of the data into the data store.

You still need to write two apps in this case...

Another way would be to make your app an HTML application (with the .hta
extension). This makes a single UI that can be used from Internet
Explorer but downloads and runs as an application. I've gone this route
before, but we did have hurdles/hoops to jump through.

HTH,
Mythran

So, with the HTML application there's one UI ... one set of code, etc., ?

This sounds like what we could be looking for. Will investigate further.

If you have any pointers for getting me started, would appreciate it.

Could you advise of what development environment you would use.


Apr 11 '07 #9
"Sean" <sean.anderso n@[nospam]oakleafgroup.bi zwrote in
news:11******** *******@kestrel .skynet.co.uk:
#1 isn't possible as not all clients have a webserver that we can
utilise.
So where are you storing the data? Directly to SQL server?

Couldn't you just as easily deploy a web server?
For updates, there are (at most) only a handful of data entry clerks
that would use the stand-alone application and they're all in the same
department so easy to update.

Seems like a n-tier is the way to go, but from what I have read here
(and the other replies), I don't see a benefit here from using .NET
and DLL's over writing a solution with VB, ASP and DLL's.
n-tier is definately the way to go, but typically you'll need an
application server as the middle tier... and without a web server, you
don't have n-tiers.

With the
steep learning curve that we will encounter on .NET ... seems to make
sense to stick with VB/ASP as this is well trodden ground from which
there will be far fewer hurdles/hoops to deal with.
..NET is entirely OO which makes for easy maintainance. ASP.NET has a
nice event model which makes programming complex web apps MUCH easier
than ASP. Also VB/ASP is considered obsolete, so your app is already
obsoleted.

But if your team has significant learning to jump to .NET ... then yes,
it can be a pain. But it's the sort of pain you'll need to take sooner
or later? Perhaps this isn't the project to do so ... but you should
definately consider moving your team to .NET. The benefits of .NET will
be apparently once you move :-)

Apr 11 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1738
by: aj | last post by:
hi i am a newbi to python and developing a web application what do u all think is the best application framework for developing web application in python. I want a framework that supports templates,database connectivity, is available for both unix and windows ,and ofcourse is easy to learn. Zope Quixote Draco or others
9
1604
by: john | last post by:
Hi I am developing a timesheet system. It will have 3 levels of access 1)Administrator 2)Approver -- Will approve or reject the timesheet filled by employees 3)Employees -- Fill in the timesheet which will ontain info like start time & end for task & task description. There will be different projects with different employees & approvers Also I need to genrate reports like timesheet for an employee for this particular week or month.Or...
1
1597
by: Troy Erickson | last post by:
I am very new to web developing. What is the best way to create a web project. I will be using asp with vs.net. What do most people do for computers more specifically. Do I remote debug to a server. Setup a computer that is a server and do my developing on the same machine? Have two servers and when the project is done transfer it to the production server?
4
1984
by: | last post by:
Developing, building, and testing. How do it the best? Learning from the world leader - Microsoft I'm very interested in how the developing/build/testing workflow @ Microsoft looks like. I think Microsoft as world leader in software developing business must have a very good workflow. Does anyone know how the development flow @ Microsoft looks like?
3
1435
by: Todd | last post by:
Hello, I'm looking for a book with in-depth coverage of developing server controls, particularly custom controls. Ideally, the book would have a good amount of how-to's and best practices, but also serve as a fairly complete reference. It doesn't need a whole lot in the way of introductory material as I already have most of the basics down. So I've narrowed my search down to 2 books: "Developing Microsoft ASP.NET Server Controls and...
11
2001
by: Simon | last post by:
Hi all As I'm sure is common knowledge the version of IIS included in XP Pro is limited in that you can only create 1 website in the IIS snap in. As an ASP.net developer this is a pain in the arse because I can't figure out how to stop having this fact cock up my relative urls. When I create a virtual directory - presumably what you're supposed to do when you're only allowed one site my relative URL's refer to the root of the
4
1163
by: Vivek Sharma | last post by:
Hi There, I am about to develop a windows application. I was wondering if there is any set of general guidelines I should be following when developing a windows application? Is there a preference of writing SQL queries within the application rather than Stored Procedures? Please help Thanks
6
2137
by: =?Utf-8?B?Sm9l?= | last post by:
Hello, I have 10 years of experience working as a Webmaster. For about an year I worked on a 3-tier ASP application which gave me a good experience with SQL Server (Stored procedures) and COM/COM+ development using VB. I have used ..NET while working as a Webmaster for developing simple interactive forms and but not at all for developing n-tier web or windows application. Since I don’t have a lot of web/windows application...
4
2438
by: Jason Huang | last post by:
Hi, I am thinking in comparing developing speed between C# Windows Form and C# Web Form applications. Assuming the scenario is that we have 2 C# coding engineers, engineer A has 2 years experience on developing C# windows form, engineer B has 2 experience on developing C# web form, B also knows Javascript as well. They both has the same apprehesnion for the Database things, they all devote themselves completely to their developing...
1
1716
by: rupeshjain9406 | last post by:
Can someone tell me wat will have better scope -developing software for mobiles or developing desktop applications in .net.What will be the pay of a guy who has experience in developing software for mobile phones and the one who has same experience in .net.also tell me which platform(android,iphone,blackberry,palm webOS,symbian..)is the best to work on considering the future market.
0
9579
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9422
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10206
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10035
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9851
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8863
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6662
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5441
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3949
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.