473,396 Members | 1,726 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

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 1276
On Apr 10, 11:32 am, "Sean" <sean.anderson@[nospam]oakleafgroup.biz>
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.anderson@[nospam]oakleafgroup.bizwrote 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.anderson@[nospam]oakleafgroup.bizwrote 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.anderson@[nospam]oakleafgroup.bizschreef 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_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@n59g2000hsh.googlegr oups.com...
On Apr 10, 11:32 am, "Sean" <sean.anderson@[nospam]oakleafgroup.biz>
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**************@TK2MSFTNGP04.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**********@rogers.comwrote in message
news:Xn**********************************@127.0.0. 1...
"Sean" <sean.anderson@[nospam]oakleafgroup.bizwrote 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********@hotmail.comwrote in message
news:eu*************@TK2MSFTNGP05.phx.gbl...
>

"Sean" <sean.anderson@[nospam]oakleafgroup.bizwrote 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.anderson@[nospam]oakleafgroup.bizwrote 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
Spam Catcher <sp**********@rogers.comwrote in
news:Xn**********************************@127.0.0. 1:
>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.
I should take the last comment back. I was thinking of SOA not n-tiers :-)
Apr 11 '07 #11
"Sean" <sean.anderson@[nospam]oakleafgroup.bizwrote in
news:11***************@kestrel.skynet.co.uk:
>
So, with the HTML application there's one UI ... one set of code, etc., ?
Yes and no...

UI - 2 sets of code (ASP.NET/WinForms/PDA/etc)

Business Logic - one set (deployed on app server or as DLL)

Data Layer - one set (deployed as DLL, on app server, or on data base
server).
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.
We use VS.NET 2005. LLBLGen Pro is a great Data Layer Generator - saves
hand coding the data layer (DLs are very redundant to code).
Apr 11 '07 #12
"Sean" <sean.anderson@[nospam]oakleafgroup.bizwrote in
news:11***************@kestrel.skynet.co.uk:
I am not sure what you mean by "the inbuild Click Once deployment
method" ?
Click one is a deployment method in .NET 2.0 (supports auto-download, auto-
update, etc). However, I believe Click-Once needs a web server which you
don't have.

BTW, is there a reason your clients don't have access to a web server? I
noticed your clients need to send read-only data files which are sent
through your Intranet?
Apr 11 '07 #13

"Spam Catcher" <sp**********@rogers.comwrote in message
news:Xn**********************************@127.0.0. 1...
"Sean" <sean.anderson@[nospam]oakleafgroup.bizwrote 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 those that don't have a SQL server, they work with an Access DB stored
on a shared folder.
Deploying a web server would be wonderful ... but, they wouldn't allow us to
do it.

.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.
The standalone application is an Access application ... so, yes we know
about obsolete.

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 :-)
Good point, perhaps a starter with a smaller project ... difficult as we
only really have this set of applications (our primary product) and a
development team of two.

Apr 12 '07 #14

"Spam Catcher" <sp**********@rogers.comwrote in message
news:Xn**********************************@127.0.0. 1...
"Sean" <sean.anderson@[nospam]oakleafgroup.bizwrote in
news:11***************@kestrel.skynet.co.uk:
>I am not sure what you mean by "the inbuild Click Once deployment
method" ?

Click one is a deployment method in .NET 2.0 (supports auto-download,
auto-
update, etc). However, I believe Click-Once needs a web server which you
don't have.

BTW, is there a reason your clients don't have access to a web server? I
noticed your clients need to send read-only data files which are sent
through your Intranet?

Not all have a webserver, some do, which is a growing number (thankfully).

Our standalone application has a readonly mode which is used when they don't
have a webserver, but in this environment the total deployment is much
smaller than when they have a webserver, but it's also fairly true that when
there is a need for a wider range deployment, the organisation is
proportionally bigger and more technologically up to date, with a webserver
and usually SQL.


Apr 12 '07 #15

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

Similar topics

1
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...
9
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...
1
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...
4
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...
3
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...
11
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...
4
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...
6
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...
4
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...
1
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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...
0
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,...
0
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...
0
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,...

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.