473,409 Members | 2,034 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,409 software developers and data experts.

Running ASP and ASP.NET

All,

I have a large asp application running on window 2003. I would like to add
functionality to the site using asp.net. Is that possible? if so, how would
I configure the site or IIS to run both.

I'm very new to asp.net and any help would be appreciated.

Jamal
Sep 25 '06 #1
4 1163
q
First off, they won't be able to share state (unless you have money).

That said, what I do... for all pages that aren't directly related to
the flow of the application, I use ASP.NET. On e-commerce websites,
anything related to the shopping cart flow and all that stays ASP,
while anything related to contact pages, help pages, and special order
processing is done in ASP.NET.

Furthermore, I will NOT do ASP programming anymore. If someone wants
something done and the ASP dude isn't available I'll do whatever I need
to do in C# and then expose it as COM/COM+/WCF so ASP can see it.

You just have to install .NET on the web server and you're set. If
that doesn't work, run the below command:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>aspn et_regiis.exe -i

David Betz
www.netfxharmonics.com

Jamal wrote:
All,

I have a large asp application running on window 2003. I would like to add
functionality to the site using asp.net. Is that possible? if so, how would
I configure the site or IIS to run both.

I'm very new to asp.net and any help would be appreciated.

Jamal
Sep 25 '06 #2
First off, they won't be able to share state (unless you have money).

Why?

Here's a free ASP/ASP.NET session state sharing solution from Microsoft :
http://msdn.microsoft.com/asp.net/re...rttoaspnet.asp


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"q" <ag******@gmail.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
First off, they won't be able to share state (unless you have money).

That said, what I do... for all pages that aren't directly related to
the flow of the application, I use ASP.NET. On e-commerce websites,
anything related to the shopping cart flow and all that stays ASP,
while anything related to contact pages, help pages, and special order
processing is done in ASP.NET.

Furthermore, I will NOT do ASP programming anymore. If someone wants
something done and the ASP dude isn't available I'll do whatever I need
to do in C# and then expose it as COM/COM+/WCF so ASP can see it.

You just have to install .NET on the web server and you're set. If
that doesn't work, run the below command:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>aspn et_regiis.exe -i

David Betz
www.netfxharmonics.com
Jamal wrote:
>All,

I have a large asp application running on window 2003. I would like to add
functionality to the site using asp.net. Is that possible? if so, how would
I configure the site or IIS to run both.

I'm very new to asp.net and any help would be appreciated.

Jamal

Sep 25 '06 #3
Thanks guys for your help.
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:ON*************@TK2MSFTNGP05.phx.gbl...
>First off, they won't be able to share state (unless you have money).

Why?

Here's a free ASP/ASP.NET session state sharing solution from Microsoft :
http://msdn.microsoft.com/asp.net/re...rttoaspnet.asp


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"q" <ag******@gmail.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
>First off, they won't be able to share state (unless you have money).

That said, what I do... for all pages that aren't directly related to
the flow of the application, I use ASP.NET. On e-commerce websites,
anything related to the shopping cart flow and all that stays ASP,
while anything related to contact pages, help pages, and special order
processing is done in ASP.NET.

Furthermore, I will NOT do ASP programming anymore. If someone wants
something done and the ASP dude isn't available I'll do whatever I need
to do in C# and then expose it as COM/COM+/WCF so ASP can see it.

You just have to install .NET on the web server and you're set. If
that doesn't work, run the below command:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>asp net_regiis.exe -i

David Betz
www.netfxharmonics.com

>Jamal wrote:
>>All,

I have a large asp application running on window 2003. I would like to
add
functionality to the site using asp.net. Is that possible? if so, how
would
I configure the site or IIS to run both.

I'm very new to asp.net and any help would be appreciated.

Jamal


Sep 25 '06 #4
Hello Jamal,

As some other guys have provided many info about ASP/ASP.NET app
configuration, here are some additional add-on resource from msdn/technet
about ASP.NET application configuration in IIS:

#ASP.NET and IIS Configuration
http://msdn2.microsoft.com/en-us/library/ms178477.aspx

#Overview of ASP.NET Configuration (IIS 6.0)
http://www.microsoft.com/technet/pro.../Library/IIS/a
6bda12f-ad0a-4645-a8b4-583256292f2a.mspx

For classic ASP, in IIS6, it is disabled by default, you can manually
enable it in the "Web Service Extensions".

Also, the following website is a very good place for starting ASP.NET
programming, the latest version is 2.0 which is much enhanced from 1.x:

#Learn ASP.NET
http://www.asp.net/learn/default.aspx?tabid=63

Enjoy them and always welcome here when you have any ASP.NET questions ;-)

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

This posting is provided "AS IS" with no warranties, and confers no rights.


Sep 26 '06 #5

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

Similar topics

7
by: Ross Presser | last post by:
OK, I've been researching this problem and can't find a definitive answer yet. The situation is one that seems to have come up a few times to different folks. I am writing an application that...
4
by: Bill Dika | last post by:
Hi I am trying to calculate a running total of a calculated textbox (tbAtStandard) in GroupFooter1 for placement in a textbox (tbTotalAtStandard) on my report in Groupfooter0. The problem...
1
by: Ennio-Sr | last post by:
Hi all! Testing a script where I need to make sure that postgresql is running before passing a <psql dbasename -c "insert into ..." > instruction I faced this curious behaviour: This is the...
1
by: Anonieko | last post by:
Query: How to display progress bar for long running page Answer: Yet another solution. REFERENCE: http://www.eggheadcafe.com/articles/20050108.asp My only regret is that when click the...
7
by: pradeep_TP | last post by:
hello all, I want to know how can I check whether a web site us running or not. I have used HttpWebRequest but when I give a web site address, It takes few number of seconds to throw exception...
3
by: Anil Kumar Sharma | last post by:
Hello, I am working on C# using vs.net 2003. I have faced two interesting problems. 1. Dynamically setting Default Button: I created a form and used it in various contexts. On basis of the...
4
by: tshad | last post by:
What would be a good way to check programmatically whether a service was running? We have a service that dies periodically and I need to check to see if this service is running. I know how to...
16
by: Gandalf186 | last post by:
I need to create a query that produces running totals for every group within my table for example i wish to see: - Group A 1 5 9 15 Group B
2
by: upperclass | last post by:
Hi, I'm trying to find a decent way to measure program running time. I know clock() is probably the standard way of doing it but clock_t overflows too quickly. The target program running time...
1
by: =?Utf-8?B?Q2lhcmFuIE8nJ0Rvbm5lbGw=?= | last post by:
On reflection, you could possibly make the app a self extracting zip file which extracts the EXE and a settings file and then starts the app, then when you app closes, it can repack the settings...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
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
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...
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.