473,396 Members | 2,011 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.

How long will Classic ASP be supported by Microsoft?

X-No-Archive
How long will Classic ASP be supported by Microsoft?

Should I start learning ASP.NET? Is it hard if you already know ASP?

Blue Apricot

Apr 19 '06 #1
16 9915

Blue Apricot wrote:
X-No-Archive
How long will Classic ASP be supported by Microsoft?

Should I start learning ASP.NET? Is it hard if you already know ASP?

Blue Apricot


http://groups.google.co.uk/group/mic...82c6e2/?hl=en#

--
Mike Brind

Apr 19 '06 #2
ASP will most likely be available for a very long time, but there will be no
further development of the platform.

I think that you should start learning ASP.NET, not because ASP is getting
cold, but for the benefits of ASP.NET.

If you know ASP you have the benefit of knowing how to develop client-server
applications, but not much more than that. There are some similarities
between ASP and ASP.NET, but not very much considering how large the .NET
framework is. Also you should try to learn the ASP.NET way of building pages
and not stick to ASP practises.
Apr 19 '06 #3

Guffa wrote:
Also you should try to learn the ASP.NET way of building pages
and not stick to ASP practises.


Why not?

--
Mike Brind

Apr 19 '06 #4
"Mike Brind" wrote:

Why not?


Because you can completely separate the HTML markup from the executable code
in ASP.NET. This means that all the code can be compiled and type safe.

When converting from ASP to ASP.NET it's usual to see <%=...%> tags in the
markup (I have been there myself). Code like that is harder to follow and
harder to maintain.
Apr 19 '06 #5
Guffa wrote:
"Mike Brind" wrote:

Why not?


Because you can completely separate the HTML markup from the
executable code in ASP.NET. This means that all the code can be
compiled and type safe.

When converting from ASP to ASP.NET it's usual to see <%=...%> tags
in the markup (I have been there myself). Code like that is harder to
follow and harder to maintain.

This still occurs in ASP.Net, especially in databound objects:
<asp:TextBox id="TextBox1" runat="server"
Text='<%# DataView1(0)("au_lname") %>'>
</asp:TextBox>


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Apr 19 '06 #6

Guffa wrote:
"Mike Brind" wrote:

Why not?


Because you can completely separate the HTML markup from the executable code
in ASP.NET. This means that all the code can be compiled and type safe.

When converting from ASP to ASP.NET it's usual to see <%=...%> tags in the
markup (I have been there myself). Code like that is harder to follow and
harder to maintain.


Exactly what Bob said. And the bit about making it easier for
designers and coders to work on the same project? Every designer I
know who has seen what VS produces has shrieked in horror at the
thought of ploughing through all those server control tags,
EditItemTemplates etc.

For the vast majority of web applications, an OOP approach is overkill.
A web page typically executes in about half a second or less, and then
dies happily. You can use sessions, databases, text files or cookies
to maintain some kind of state between pages, but web applications are
not all about RAM-resident objects that might need to live for hours or
days, undergoing all kinds of changes in state.

Good programmers who are used to <%=...%> or <?php...?> don't find well
crafted ASP or PHP files difficult to follow or maintain, any more than
those who are used to Public Class Whatever ...End Class will be
comfortable with Code Behind.

And the bit about code being compiled and type safe? So what? So an
aspx page might run a few microseconds faster than an interpreted
script-based page. No one except the sysadmin will notice in the vast
majority of cases. Please note, I'm not talking about Yahoo or Ebay.
I'm talking about the huge number of B2B sites that have niche
audiences and page impression counts of less than 1 million a year,
which probably make up about 70% of all web sites.

Not that I have anything against ASP.NET. I'm learning it myself, but
if ASP is ever dumped by Microsoft, PHP is an equally valid alternative
for the kind of work I do.

Time to clamber off the soap box now..... :-)

--
Mike Brind

Apr 19 '06 #7
"Bob Barrows [MVP]" wrote:
Guffa wrote:
"Mike Brind" wrote:

Why not?


Because you can completely separate the HTML markup from the
executable code in ASP.NET. This means that all the code can be
compiled and type safe.

When converting from ASP to ASP.NET it's usual to see <%=...%> tags
in the markup (I have been there myself). Code like that is harder to
follow and harder to maintain.

This still occurs in ASP.Net, especially in databound objects:
<asp:TextBox id="TextBox1" runat="server"
Text='<%# DataView1(0)("au_lname") %>'>
</asp:TextBox>


Yes, it can be done that way. It can also be done from code-behind, keeping
that mess out of the markup.

A matter of taste, I give you. I like it clean, compiled, type checked,
layered and having as few surprises as possible.
Apr 19 '06 #8
> And the bit about making it easier for
designers and coders to work on the same project? Every designer I
know who has seen what VS produces has shrieked in horror at the
thought of ploughing through all those server control tags,
EditItemTemplates etc.
I didn't say that, and I don't believe that either. Microsoft seems to be
coming with something that really could work in that respect, but so far I'd
like to keep the designers far away from the code.

Separating the code from the markup is for keeping the code easy to develop
and maintain.
Good programmers who are used to <%=...%> or <?php...?> don't find well
crafted ASP or PHP files difficult to follow or maintain, any more than
those who are used to Public Class Whatever ...End Class will be
comfortable with Code Behind.
That works fine when all the code is in the same file, but when half of the
code is in the html and half of it is in code-behind, it gets worse...
And the bit about code being compiled and type safe? So what? So an
aspx page might run a few microseconds faster than an interpreted
script-based page.


It's not for the speed but for the stability.

I've been developing applications in ASP for several years, and moved on to
ASP.NET about two years ago. I find working with compiled code a dream
compared to script programming. It's so much easier to write stable and
efficient code.

Apr 19 '06 #9
On 18 Apr 2006 20:52:15 -0700, "Blue Apricot" <bl************@gmail.com>
wrote:
in <11**********************@i40g2000cwc.googlegroups .com>
X-No-Archive
How long will Classic ASP be supported by Microsoft?

Should I start learning ASP.NET? Is it hard if you already know ASP?

Blue Apricot


Actually, the best advice I could offer would be to refactor it all in
PHP over Apache using PostgreSQL. The performance is awesome as in
~superior to asp~, the conversion time is minimal, and the cost is
nothing (FREE) but your time in order to see that I speak the ~truth~.

---
This posting is provided "AS IS" with no warranties and no guarantees either express or implied.

Stefan Berglund
Apr 20 '06 #10

"Guffa" <Gu***@discussions.microsoft.com> wrote in message
news:F1**********************************@microsof t.com...
And the bit about making it easier for
designers and coders to work on the same project? Every designer I
know who has seen what VS produces has shrieked in horror at the
thought of ploughing through all those server control tags,
EditItemTemplates etc.
I didn't say that, and I don't believe that either. Microsoft seems to be
coming with something that really could work in that respect, but so far

I'd like to keep the designers far away from the code.

Well that's true. But HTML IS code. Designers shouldn't be let near it
either.
Separating the code from the markup is for keeping the code easy to develop and maintain.
There's nothing in ASP that prevents this either. For example I often see
this:-
<tr><td>
<%

'---- Large chunk of code delivering content of TD

%>
</td>

That can be hard to read however the same is easy enough to do this way:-

<tr><td><%=GetTDContent()%></td>
Good programmers who are used to <%=...%> or <?php...?> don't find well
crafted ASP or PHP files difficult to follow or maintain, any more than
those who are used to Public Class Whatever ...End Class will be
comfortable with Code Behind.
That works fine when all the code is in the same file, but when half of

the code is in the html and half of it is in code-behind, it gets worse...

Not if good code contstruction principles are being applied. Concepts such
as cohesive modules which are as old as programming itself still apply.
And the bit about code being compiled and type safe? So what? So an
aspx page might run a few microseconds faster than an interpreted
script-based page.


It's not for the speed but for the stability.

I've been developing applications in ASP for several years, and moved on

to ASP.NET about two years ago. I find working with compiled code a dream
compared to script programming. It's so much easier to write stable and
efficient code.


ASP applications of sufficient complexity where the above becomes true are
being developed in combination with VB6.

I've been developing in both ASP and .NET (not ASP.NET) for quite some time.
I keep going back to ASP.NET thinking surely there must be a killer reason
to use this stuff. So far I haven't found one.

Anthony.
Apr 20 '06 #11
Guffa wrote:
<snipped>
I've been developing applications in ASP for several years, and moved on to
ASP.NET about two years ago. I find working with compiled code a dream
compared to script programming.


ASP script is also compiled. This has been noted about a million times
on these newsgroups, so it won't hurt to say it one more time:
http://groups.google.com/groups?as_q...=2006&safe=off

On the first request for an ASP page, the ASP code is compiled to
p-code, the p-code cached in IIS memory and executed. The cached p-code
is (usually) used on subsequent page requests.

Here's a post that contains a sample of the p-code (bytecode) to which
ASP is compiled:
http://groups.google.com/group/micro...e373a57b655d3c

There's an explanation of the ASP compiling process in Appendix 3, "ASP
Caching", of:
http://www.microsoft.com/technet/pro...on130121120120

Apr 21 '06 #12

"Michael D. Kersey" <md******@hal-pc.org> wrote in message
news:ey**************@TK2MSFTNGP03.phx.gbl...
Guffa wrote:
<snipped>
I've been developing applications in ASP for several years, and moved on to ASP.NET about two years ago. I find working with compiled code a dream
compared to script programming.
ASP script is also compiled. This has been noted about a million times
on these newsgroups, so it won't hurt to say it one more time:

http://groups.google.com/groups?as_q...=2006&safe=off
On the first request for an ASP page, the ASP code is compiled to
p-code, the p-code cached in IIS memory and executed. The cached p-code
is (usually) used on subsequent page requests.

Here's a post that contains a sample of the p-code (bytecode) to which
ASP is compiled:
http://groups.google.com/group/micro...e373a57b655d3c
There's an explanation of the ASP compiling process in Appendix 3, "ASP
Caching", of:
http://www.microsoft.com/technet/pro...on130121120120


Unfortunately the word 'compiled' is overloaded.

It is true that the p-code for a parsed ASP pages is cached. However this
p-code is still interpreted every time the page is executed.

With ASP.NET the page is complied first to IL. However the IL is further
compilied to native code and this native code is cached.

Anthony.
Apr 21 '06 #13
So basically you are here to try and convert people. Why?

Actually, the best advice I could offer would be to refactor it all in
PHP over Apache using PostgreSQL. The performance is awesome as in
~superior to asp~, the conversion time is minimal, and the cost is
nothing (FREE) but your time in order to see that I speak the ~truth~.

Apr 21 '06 #14
> How long will Classic ASP be supported by Microsoft?

Have you ever actually used Microsoft product support for anything
exclusively ASP-related?

I view ASP technology as something you can use for as long as you want to,
or can. For example, let's say you have a 1988 Corolla. It is clearly no
longer covered by Toyota's warranty, but you are free to drive it for as
long as you want, as long as you can maintain it and that it continues to
meet the oh-so-rigid safety standards in the US. When it becomes too
expensive to maintain, you dump it.

Similarly with ASP, even if some future version of Windows drops support for
ASP (which I doubt), there is no reason to immediately move to that platform
if you are using ASP and wish to continue to do so.

However, my guess is that they will continue to support ASP for as long as
they continue to ship IIS. Since they are not making any changes to that
side of the codebase, I can't think of anything they would gain by ripping
out the ASP support (except maybe save some lines of code, but we know that
isn't a priority over at Microsoft). Especially because of the backlash
from all of these customers who have deployed this technology and are using
it perpetually...
Should I start learning ASP.NET?
If you have the time to invest, sure, it's definitely an advantage to have
it in your toolbox, especially in today's job market. And it is a much more
comprehensive platform that will give you more benefits in the long run. In
the short term, however, if you are on a tight deadline, I'm not sure that
switching mid-stream is going to be a very good thing.
Is it hard if you already know ASP?


My suggestion when learning ASP.NET is to forget everything you learned
about ASP (aside from the peripheral stuff, which is still important, like
HTML, JavaScript, CSS). The whole architecture really is different, even
though the name remains similar and IIS is still processing the server-side
stuff.

A
Apr 21 '06 #15
Well said really,

I would also like to add that I have dragged my feet on really learning
ASP.net these past 4 years. I have worked with it and given up in the past.
I knew enough to be dangerous. It was not until recently that I really
understand it and have become very very good with it.

All it took was 3 weeks, a lot of reading, and about 100 hours with visual
studio.net. Most of the help I needed was on the web. I could kick myself
for not spending the time to get familiar with things before now. There is
some really cool stuff. That being said I still love classic asp and wil
always use it I am sure. At least now though I don't feel like I am behind
the times.

I recently made an elaborate authentication control that works with
formsauthentication and roles and its just so cool now that I understand
enough to do things like that.

Unlike classic ASP.NET ASP.NET is probably one of those things your will
never know everything about. There is just so much, but that also makes it
very exciting. In the classic ASP world there is only so much to learn and a
lot of us in these newsgroups have it 99% covered.

I will agree with Aaron.. dont give up on classic asp and I too think it
will around as long as IIS as we know it is, but don't be afraid to spend
some serious time with .NET when you have time. Once you become friends
you'll be glad to took the time to get acquated.

"Aaron Bertrand [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:uP**************@TK2MSFTNGP05.phx.gbl...
How long will Classic ASP be supported by Microsoft?


Have you ever actually used Microsoft product support for anything
exclusively ASP-related?

I view ASP technology as something you can use for as long as you want to,
or can. For example, let's say you have a 1988 Corolla. It is clearly no
longer covered by Toyota's warranty, but you are free to drive it for as
long as you want, as long as you can maintain it and that it continues to
meet the oh-so-rigid safety standards in the US. When it becomes too
expensive to maintain, you dump it.

Similarly with ASP, even if some future version of Windows drops support
for ASP (which I doubt), there is no reason to immediately move to that
platform if you are using ASP and wish to continue to do so.

However, my guess is that they will continue to support ASP for as long as
they continue to ship IIS. Since they are not making any changes to that
side of the codebase, I can't think of anything they would gain by ripping
out the ASP support (except maybe save some lines of code, but we know
that isn't a priority over at Microsoft). Especially because of the
backlash from all of these customers who have deployed this technology and
are using it perpetually...
Should I start learning ASP.NET?


If you have the time to invest, sure, it's definitely an advantage to have
it in your toolbox, especially in today's job market. And it is a much
more comprehensive platform that will give you more benefits in the long
run. In the short term, however, if you are on a tight deadline, I'm not
sure that switching mid-stream is going to be a very good thing.
Is it hard if you already know ASP?


My suggestion when learning ASP.NET is to forget everything you learned
about ASP (aside from the peripheral stuff, which is still important, like
HTML, JavaScript, CSS). The whole architecture really is different, even
though the name remains similar and IIS is still processing the
server-side stuff.

A

Apr 21 '06 #16

Unlike classic ASP.NET ASP.NET is probably one of those things your will
never know everything about. There is just so much, but that also makes it
very exciting. In the classic ASP world there is only so much to learn and a lot of us in these newsgroups have it 99% covered.


There's not a lot preventing classic ASP developers using tools like VB6 to
access significant chunks of the functionality of the windows API that .NET
exposes directly in the framework. It's this 'all in one tool box' approach
which makes the learning it appear difficult. In reality we're not likely
need all of it just as very few 'classic' applications use all aspects of
windows API.
Anthony.
Apr 21 '06 #17

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

Similar topics

3
by: Enigman O'Maly | last post by:
With VB.NET, or Visual Fred the current thing, what future, if any, does "classic" Visual Basic have? Also, is VBA going to become VNETA, or has it done so already?
4
by: Peter | last post by:
hi,all: I just made a simple web project that I want to insert 10000 rows data to sqlserver one by one,it would take a long time to complete, during inserting, i closed the web page that made the...
2
by: Lau Lei Cheong | last post by:
Hello everyone, I was believing that the life of ASP.NET objects will end as soon as the origionating Page object transmitted the response stream and frees, even if you haven't explicitly free...
6
by: Aaron Bertrand [SQL Server MVP] | last post by:
Based on a couple of recent discussions I've had on this topic, I posted a brief article last night: "How long will classic ASP be supported?" http://www.aspfaq.com/2545 Please let me know...
1
by: Oberon | last post by:
Hi. I wrote algorithm double G(int m , int n){ if(m<0 || m>n){ return 0; } if (m==0 && n==0){ return P_G; }
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: 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
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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.