473,513 Members | 3,949 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 ?
---------------------------------------------------------------------
"Politicians and judges, like underwear, should be changed often and for the same reasons."

Nov 19 '05 #1
10 981
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**************@TK2MSFTNGP14.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 ?
---------------------------------------------------------------------
"Politicians 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**************@TK2MSFTNGP10.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**************@TK2MSFTNGP10.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**************@TK2MSFTNGP10.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 responsibilities 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 ?
---------------------------------------------------------------------
"Politicians 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**************@TK2MSFTNGP14.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
I don't think anybody actually uses notepad, it's more likely they use Web Matrix or one of the many smart text editors.

But I think the comments support what originally was my issue. I guess I don't consider it compatible if I have to manually edit
any files before I can actually run it.

Changing things like the "autoevents" code or to resolve the "codebehind= " to "src=" problem ; or If I have dig through VS-only
files to even find the necessary code to make the modifications isn't really compatible. I was just wondering if 2.0 eliminated
the conversion process. Doesn't sound as if it does.

One example of the DLL issue is here, probably isn't always the case.
http://forums.asp.net/816098/ShowPost.aspx
thanks for the info.

--------------------------------------------------------
I would much rather chew on tinfoil than try to code in C#.
Nov 19 '05 #11

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

Similar topics

46
6200
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
8057
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
3523
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?...
2
1360
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
1517
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
6323
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
1463
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...
2
6190
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...
3
17087
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...
0
7270
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...
0
7178
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...
0
7397
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. ...
1
7125
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7543
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...
0
5703
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...
0
3252
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
1612
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 we have to send another system
0
470
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...

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.