473,588 Members | 2,495 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

.net compatibility resolved in 2.0 ?

In version 1.x .net websites came in multiple versions.

As illustrated by the sample starter kits, we saw the Visual Studio versions did not work with the code developed from just the SDK.

Can anyone tell me if this incompatibility will be resolved in 2.0, or are we still faced with multiple versions of applications ?
---------------------------------------------------------------------
"Politician s and judges, like underwear, should be changed often and for the same reasons."

Nov 19 '05 #1
10 995
Hi Jon,

I don't think I heard of cases where sites using VS didn't work where ones
using just the SDK would work. It sounds more like a deployment issue. Could
you elaborate?

Ken
Microsoft MVP [ASP.NET]

"Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
news:uC******** ******@TK2MSFTN GP14.phx.gbl...
In version 1.x .net websites came in multiple versions.

As illustrated by the sample starter kits, we saw the Visual Studio
versions did not work with the code developed from just the SDK.

Can anyone tell me if this incompatibility will be resolved in 2.0, or are
we still faced with multiple versions of applications ?
---------------------------------------------------------------------
"Politician s and judges, like underwear, should be changed often and for
the same reasons."

Nov 19 '05 #2
check out the 1.x starter kits at www.asp.net
they come in 4 different downloads: C# or vb, sdk or visual studio.

------------------------------------------------------------
And preachers also once said the world was flat....

Nov 19 '05 #3
What about the fact that 4 different downloads are available means or
implies any incompatability ? What is incompatable with what here? Are you
hoping that in 2.0, for example, that "C# is compatable with VB"?

-F
"Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
news:uR******** ******@TK2MSFTN GP10.phx.gbl...
check out the 1.x starter kits at www.asp.net
they come in 4 different downloads: C# or vb, sdk or visual studio.

------------------------------------------------------------
And preachers also once said the world was flat....

Nov 19 '05 #4
The 2.0 Starter Kits come in only one download :

http://www.asp.net/vwd/starterkits.a...dex=4&tabId=46

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
news:uR******** ******@TK2MSFTN GP10.phx.gbl...
check out the 1.x starter kits at www.asp.net
they come in 4 different downloads: C# or vb, sdk or visual studio.


Nov 19 '05 #5
re:
they come in 4 different downloads: C# or vb, sdk or visual studio.
I should have added that the 4 downloads were for convenence's sake.

One SDK version; One Visual Studio version.
One download for each language ( VB.NET and C# ).

The SDK and VS versions are compatible.
It's just that the SDK version doesn't have the VS project files.

Many developers don't have Visual Studio,
but the SDK is freely downloadable by anyone.

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
news:uR******** ******@TK2MSFTN GP10.phx.gbl... check out the 1.x starter kits at www.asp.net
they come in 4 different downloads: C# or vb, sdk or visual studio.

Nov 19 '05 #6
This has been resolved.

As Juan points out, the 2.0 starter kits come in only one version. In
2.0 the Visual Studio 2005 IDE has no real control over how an ASP.NET
project gets built and runs - those responsibilitie s fall with the
platform (ASP.NET). ASP.NET owns the tools to do the compilation,
etc.

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Thu, 6 Oct 2005 18:54:13 -0700, "Jon Paal" <Jon nospam Paal @
everywhere dot com> wrote:
In version 1.x .net websites came in multiple versions.

As illustrated by the sample starter kits, we saw the Visual Studio versions did not work with the code developed from just the SDK.

Can anyone tell me if this incompatibility will be resolved in 2.0, or are we still faced with multiple versions of applications ?
---------------------------------------------------------------------
"Politician s and judges, like underwear, should be changed often and for the same reasons."


Nov 19 '05 #7
vs and sdk aren't truly compatible.
-- vs demands codebehind, sdk doesn't.
-- vs creates a bundle of files never required/used by sdk developer
-- dll's created through sdk may not work with vs (namespace issue I thnk)
-- the autoeventwireup = false
-- namespace declarations may conflict because visual studio creates it's own
also by going from 4 to 1 , they will only be available in 1 language ?
Nov 19 '05 #8
things like changing the CodeBehind="" to src="".

------------------------------------------------------------
And preachers also once said the world was flat....
Nov 19 '05 #9
re:
vs and sdk aren't truly compatible.
Actually, they are. You can run either with the other's code.

The differences are for convenience's sake, to *edit*
the files in the VS version, but they *are* compatible.

In fact, if you substitute a code-behind file in the VS 2003 version
with a non code-behind file in the SDK version, the application
will compile and run well.

re: -- vs demands codebehind, sdk doesn't.
VS doesn't demand code-behind any more, although it did in VS 2003.

And, nothing stops you from writing code-behind with Notepad.
( That would be using the SDK... ) ;-)

Remember, the .Net JIT compiler will compile code-behind,
even if it didn't originate with VS.NET.

re: -- vs creates a bundle of files never required/used by sdk developer
True, as pointed out, but that has nothing to do with "compatibility" .

re: -- dll's created through sdk may not work with vs (namespace issue I thnk)
They can, and do. All they need is a reference in VS 2003.
I use a lot of command-line-compiled assemblies in VS.NET 2003 projects.

re: -- the autoeventwireup = false
True, but that's easily changed.

re: also by going from 4 to 1 , they will only be available in 1 language ?
Initially, yes.
I think they will be made available in VB, too, but cannot guarantee.

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
news:OA******** ******@TK2MSFTN GP14.phx.gbl... vs and sdk aren't truly compatible.
-- vs demands codebehind, sdk doesn't.
-- vs creates a bundle of files never required/used by sdk developer
-- dll's created through sdk may not work with vs (namespace issue I thnk)
-- the autoeventwireup = false
-- namespace declarations may conflict because visual studio creates it's own
also by going from 4 to 1 , they will only be available in 1 language ?

Nov 19 '05 #10

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

Similar topics

46
6243
by: Jon Perez | last post by:
Can one run a 1.5 .pyc file with the 2.x version interpreters and vice versa? How about running a 2.x .pyc using a 2.y interpreter?
6
8059
by: Scott | last post by:
The code below appears to work on the following: MAC - Safari PC - IE PC - Opera But the addition of items to the dropdown (select2) does not function in: MAC – IE
36
3544
by: Simon Wigzell | last post by:
I have the following in my webpage: <body onresize=CenterIt(); onMouseMove=mouseCheck(event);> CenterIt and mouseCheck are my own javascript functions. Works fine for IE and Opera, doesn't even go into the function for Firefox or Netscape. Is there a different way to assign functions to events that will be understood by "all" browsers? Thanks!
2
1364
by: Hemo_jr | last post by:
Please tell me if IBM DB2 Universal Database Version 7 can run on Windows Server 2003 (even if this configuration is not supported by IBM) Thanks, -- Matt Hickman
6
1520
by: Filip Konvicka | last post by:
Hello, I'm using VC++ 6.0. Sadly, it lacks some of STL classes, like hash_set. So I've decided to upgrade to VC++ .NET 2003. My questions are: - can I produce PEs for x86, like I did with VC++ 6.0, with .NET version of VC? - will my apps run on Windows 95 (I mean 4.0.0.95 or
150
6485
by: tony | last post by:
If you have any PHP scripts which will not work in the current releases due to breaks in backwards compatibility then take a look at http://www.tonymarston.net/php-mysql/bc-is-everything.html and see if you agree with my opinion or not. Tony Marston http://www.tonymarston.net
2
1467
by: David McDivitt | last post by:
resending with better URL At the URL http://www.spfldcycling.org/miles/06_12_detail.htm , I'm having difficulty resizing a DIV object when the window resizes. I want to get the left and top positions of the DIV, then calculate the width and height. I can get the window dimensions fine, but since I can't get the left and top I had to use constants, which isn't a good idea. Also, the page doesn't work well in Netscape. The header shifts...
2
6193
by: mr.mattyg | last post by:
I might as well start off like everyone else who posts problems they are having....So I'm new to JavaScript..... Anywho, I have a page that lists 15 or so thumbnails and then one big image of one of those thumbnails. I wrote some javascript code that when you click on the thumbnail the real picture of that thumbnail loads in the big image on the page. So essentially I wrote some very simple code that replaces the "src" of an image tag...
3
17105
by: amanjsingh | last post by:
Hi, I am trying to implement Java Web Service using Apache Axis2 and Eclipse as a tool. I have created the basic code and deployed the service using various eclipse plugin but when I try to invoke the service using client stub, I get this error... Exception in thread "main" java.lang.Error: Unresolved compilation problems: org.apache cannot be resolved to a type org.apache cannot be resolved to a type org.apache cannot be resolved to a...
0
7929
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
7860
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
8222
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
8354
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
8223
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
6634
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
5398
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
3883
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1195
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.