473,491 Members | 3,350 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

DotNet 2.0

Anyone played with DotNet 2.0 or the Visual Web Developer 2005 Express
Edition yet? any thoughts?

/P.

Dec 20 '05 #1
6 4551
Paxton wrote:
Anyone played with DotNet 2.0 or the Visual Web Developer 2005 Express
Edition yet? any thoughts?

/P.

There was no way for you to know it, but this is a classic asp newsgroup.
While you may be lucky enough to find a dotnet-savvy person here who can
answer your question, you can eliminate the luck factor by posting your
question to a newsgroup where the dotnet-savvy people hang out. I suggest
microsoft.public.dotnet.framework.aspnet.

I've heard lots of good things about it, but all I can say about it is that
it installed without a hitch on my machine. I have not had a chance to start
using it yet.

HTH,
Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Dec 20 '05 #2

Bob Barrows [MVP] wrote:
Paxton wrote:
Anyone played with DotNet 2.0 or the Visual Web Developer 2005 Express
Edition yet? any thoughts?

/P.

There was no way for you to know it, but this is a classic asp newsgroup.
While you may be lucky enough to find a dotnet-savvy person here who can
answer your question, you can eliminate the luck factor by posting your
question to a newsgroup where the dotnet-savvy people hang out. I suggest
microsoft.public.dotnet.framework.aspnet.

I've heard lots of good things about it, but all I can say about it is that
it installed without a hitch on my machine. I have not had a chance to start
using it yet.

HTH,
Bob Barrows


I didn't expect the standard .NET response! :-)

I'm a classic ASP-er too, and was just interested to find out whether
other classic ASP-ers have tried out the latest .NET offering from
Uncle Bill, and what their initial thoughts on it were.

Having tried 1.1, and found that simply connecting to a database and
generating a recordset required tons more code in .NET than classic
ASP, I never really bothered to stick with it. I've only played with
the new VWD toy for a couple of hours, but was amazed at how much
simpler it is to do quite a lot of things now.

/P.

Dec 20 '05 #3
Paxton wrote:

I didn't expect the standard .NET response! :-)


Bwahahahaha. NOBODY expects the ....

Oh, wait. You didn't say "Spanish Inquisition" ...

Never mind. :-)

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Dec 20 '05 #4
Paxton wrote:
<snipped>
I'm a classic ASP-er too, and was just interested to find out whether
other classic ASP-ers have tried out the latest .NET offering from
Uncle Bill, and what their initial thoughts on it were.

Having tried 1.1, and found that simply connecting to a database and
generating a recordset required tons more code in .NET than classic
ASP, I never really bothered to stick with it. I've only played with
the new VWD toy for a couple of hours, but was amazed at how much
simpler it is to do quite a lot of things now.
/P.
Yes, it's now almost caught up with Sybase's PowerBuilder!

One pain for those who used ASP.NET 1.1 is that some 1.1 objects are now
effectively deprecated. The old 1.1 grid control has been supplanted by
a superior new "gridview" which provides much functionality with no
explicit coding. There's more on this thread:
http://groups.google.com/group/micro...87abde73de5f0c

Anyone who wrote a lot of code for ASP.NET 1.1 will eventually find
themselves rewriting for ASP.NET 2.0 (and ASP.NET 3.0 etc.).

The troublesome thing about object frameworks like VS and ASP.NET is
that this will occur many times over in the history of the framework. I
avoid development of complex OOP architectures on top of vendor object
libraries (such as ASP.NET 1.1 and 2.0) because the vendors inevitably
revise/reorganize/rewrite the libraries, which forces you to rewrite
your own code. Like Joel Spolsky says,
we haven't ported Fog Creek's two applications from classic ASP and Visual Basic 6.0 to .NET because there's no return on investment for us. None. It's just Fire and Motion as far as I'm concerned: Microsoft would love for me to stop adding new features to our bug tracking software and content management software and instead waste a few months porting it to another programming environment, something which will not benefit a single customer and therefore will not gain us one additional sale, and therefore which is a complete waste of several months, which is great for Microsoft, because they have content management software and bug tracking software, too, so they'd like nothing better than for me to waste time spinning cycles catching up with the flavor du jour, and then waste another year or two doing an Avalon version, too, while they add features to their own competitive software. Riiiight.


from
"How Microsoft Lost the API War"
http://www.joelonsoftware.com/articles/APIWar.html

IMO Visual Studio (VS) and ASP.NET 2.0 are fine provided you don't want
to know what's happening under the sheets. VS has drag-and-drop for the
WWW and continues Microsoft's pursuit of making the Internet transparent
(as Bill Gates said about TCP/IP "It's only transport!"). To do this VS
generates lots of code and ASP.NET calls lots of functions in your
behalf, so you may or may not like the results.

But I'm just speaking from what I've seen and what my cohorts say. I
don't use VS or ASP.NET myself; I now primarily use free-and open-source
(FOSS) languages and toolkits.
Dec 20 '05 #5

Bob Barrows [MVP] wrote:
Paxton wrote:

I didn't expect the standard .NET response! :-)


Bwahahahaha. NOBODY expects the ....

Oh, wait. You didn't say "Spanish Inquisition" ...

Never mind. :-)


That reminds me - I MUST add Monty Python DVDs to my Xmas list :-)

/P.

Dec 20 '05 #6
On Tue, 20 Dec 2005 12:00:01 -0600, "Michael D. Kersey" <md******@hal-pc.org>
wrote:
in <e7**************@TK2MSFTNGP15.phx.gbl>
Paxton wrote:
<snipped>
I'm a classic ASP-er too, and was just interested to find out whether
other classic ASP-ers have tried out the latest .NET offering from
Uncle Bill, and what their initial thoughts on it were.

Having tried 1.1, and found that simply connecting to a database and
generating a recordset required tons more code in .NET than classic
ASP, I never really bothered to stick with it. I've only played with
the new VWD toy for a couple of hours, but was amazed at how much
simpler it is to do quite a lot of things now.
/P.


Yes, it's now almost caught up with Sybase's PowerBuilder!

One pain for those who used ASP.NET 1.1 is that some 1.1 objects are now
effectively deprecated. The old 1.1 grid control has been supplanted by
a superior new "gridview" which provides much functionality with no
explicit coding. There's more on this thread:
http://groups.google.com/group/micro...87abde73de5f0c

Anyone who wrote a lot of code for ASP.NET 1.1 will eventually find
themselves rewriting for ASP.NET 2.0 (and ASP.NET 3.0 etc.).

The troublesome thing about object frameworks like VS and ASP.NET is
that this will occur many times over in the history of the framework. I
avoid development of complex OOP architectures on top of vendor object
libraries (such as ASP.NET 1.1 and 2.0) because the vendors inevitably
revise/reorganize/rewrite the libraries, which forces you to rewrite
your own code. Like Joel Spolsky says,
we haven't ported Fog Creek's two applications from classic ASP and Visual Basic 6.0 to .NET because there's no return on investment for us. None. It's just Fire and Motion as far as I'm concerned: Microsoft would love for me to stop adding new features to our bug tracking software and content management software and instead waste a few months porting it to another programming environment, something which will not benefit a single customer and therefore will not gain us one additional sale, and therefore which is a complete waste of several months, which is great for Microsoft, because they have content management software and bug tracking software, too, so they'd like nothing better than for me to waste time spinning cycles catching up with the flavor du jour, and then waste another year or two doing an Avalon version, too, while they add features to their own competitive software. Riiiight.


from
"How Microsoft Lost the API War"
http://www.joelonsoftware.com/articles/APIWar.html

IMO Visual Studio (VS) and ASP.NET 2.0 are fine provided you don't want
to know what's happening under the sheets. VS has drag-and-drop for the
WWW and continues Microsoft's pursuit of making the Internet transparent
(as Bill Gates said about TCP/IP "It's only transport!"). To do this VS
generates lots of code and ASP.NET calls lots of functions in your
behalf, so you may or may not like the results.

But I'm just speaking from what I've seen and what my cohorts say. I
don't use VS or ASP.NET myself; I now primarily use free-and open-source
(FOSS) languages and toolkits.


microsoft would really prefer to make the Internet invisible and inaccessible
(as opposed to transparent) because the Internet has allowed that backward OSS
group of folks to gain far too much long term credibility.

---
Stefan Berglund
Dec 20 '05 #7

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

Similar topics

1
2523
by: GChong | last post by:
Hi, Im looking for some general 'marketing' info on dotnet: how long it has been in use (i.e first release date), how many companies are using it, number of .NET developers in the world,...
12
4175
by: tmb | last post by:
1 - Is Microsoft dotnet a Virtual Machine... like the Java Virtual Machine... that will run on any operating system? 2 - If so, does Microsoft give away the dotnet development system like Sun...
5
2353
by: David | last post by:
Hi everyone, I have a ActiveX EXE component written in VB6. This ActiveX EXE exposes various public methods that can be called by several other independent Windows EXE applications (also written...
0
1013
by: Justin Kennedy | last post by:
Hi, I'm new to dotnet. In fact, I'm a Java/web dev. guy mostly. I was debating on whether to use Java or dotnet for a recent project. The main requirements are: 1. Tools to create a "rich"...
10
3706
by: Darren | last post by:
OK, I'm trying to understand the need for this. If I understand correctly without this anyone can reverse engineer and obtain the source code of my application - is this correct? And this tool will...
0
4637
by: Joe Bloggs | last post by:
Hi all, I take the pleasure to inform that Dotnet Commons Logging has been released for use. Dotnet Commons Logging, a subproject of the Donet Commons project currently located under the...
4
2734
by: Peter Hemmingsen | last post by:
Hi, I have a dotnet object (implemented in mc++ and used in c#) which have a property called "Info". The Info property is also a dotnet object (implemented in mc++). In the constructor of the...
4
1409
by: Peter Plumber | last post by:
OK, this is a rather strange request Is it possible to use dot-net dlls in VB6 projects? Is anyone doing this or is this completely useless? thx Peter
3
1637
by: gg | last post by:
My standard version of dotnet 2003 basic does Not have vbc.exe have class library template produce dll when outputtype is changed to classlib for .vbproj it seems that standard version is not...
7
2063
by: Peted | last post by:
Hi, im hoping someone cane provide or point to a definitive accurate explantion of dotnet compilation when run and the best way to optimise peformace when dotnet code is run first time and...
0
7118
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
7157
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
7192
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
7364
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
5452
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,...
1
4886
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...
0
4579
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...
0
1397
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 ...
0
282
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.