Questions tagged [.net-1.1]

The 1.1 version of the .NET Framework. Use for questions specifically related to .NET Framework 1.1. For questions on .NET Framework generally, use the .net tag.

The 1.1 version of the .NET Framework.

Released by Microsoft Corporation
Version Number: 1.1.4322.573
Release Date: 2003-04-01

373 questions
4
votes
9 answers

What other improvements in .NET's Dictionary vs. HashTable besides [un]boxing?

Trying to convince someone to switch from .NET 1.1 I saw people saying that one advantage of using the Dictionary class in post .NET 1.1 is performance increases due to not having to unbox/cast objects. Are there another improvements besides that?…
teriyaki
  • 155
  • 8
4
votes
3 answers

Why is my WebService constructor getting called each time I call a webmethod?

My webservice constructor is getting called each time that I call a webmethod. This is causing some problems with some new functionality that I am adding and I cannot figure out what I am doing wrong to cause this. The only place that I am newing…
Jeremy Cron
  • 2,404
  • 3
  • 25
  • 30
4
votes
4 answers

.NET 1.1 consuming a webservice with nullable types, what to do?

I need to consume a WebService with .NET 1.1. The problem is that the webService return Null Values, and .NET 1.1 doesn't work with Nullable types. A piece of the WebService Schema
4
votes
8 answers

How to split a string into a fixed length string array?

I have a long string like this dim LongString as String = "123abc456def789ghi" And I want to split it into a string array. Each element of the array should be in 3 characters length For example, Dim LongArray(5) As String LongArray(0) =…
Yoga Fire
  • 43
  • 1
  • 1
  • 3
4
votes
4 answers

Asp.net on visual studio .net 2003 web component Issues

I want to run ASP.NET on VS 2003 but it raises an error which says: "Visual studio has detected that web server is running asp.net version 1.0.The web application you are creating or opening can be configured to be compliant with asp.net 1.0.…
Ashoktanu
4
votes
5 answers

Searching an ArrayList

I'm working on some legacy code, so cannot use Generic List here. I have an ArrayList being returned from a data layer method. Each item in the last consists of an ID and a Description field. I want to loop through the ArrayList and search for a…
IrishChieftain
  • 15,108
  • 7
  • 50
  • 91
4
votes
4 answers

Why can't dotnet 1.1 cast down after ArrayList.GetRange?

I'd like to create an array from range of values within an ArrayList but am getting the error "At least one element in the source array could not be cast down to the destination array type". Why should the following fail, and what would you do…
stovroz
  • 6,835
  • 2
  • 48
  • 59
4
votes
1 answer

Migrating down from .NET 2.0 to .NET 1.1 - DllImport no longer works

One of our apps is in C#/.NET 1.1/VS2003 and needs to remain as is :-( I need to use code from another C# assembly that is in .NET 2.0: because of technical restrictions (.NET 1.1 mandatory, so direct use of .NET 2.0 impossible), I took code away…
Emmanuel
  • 13,935
  • 12
  • 50
  • 72
4
votes
4 answers

How will .NET 3.5 SP1 impact my .NET 1.1 applications?

If I have a number of existing applications written and deployed w/ .NET 1.1, is there any risk to installing .NET 3.5 SP1 on the servers? My understanding is that .NET 3.5 SP1 only works with the .NET 2.0 codebase, so it will not touch or affect…
Wade
  • 241
  • 1
  • 2
  • 7
4
votes
4 answers

Best practice for AJAX calls in .Net 1.1

Well, my latest contract is forcing me into the antique world of .Net 1.1. Since I have been using jQuery and Rails for quite a while AJAX like solutions to problem keep on popping into my head and I can't help writing them. So my fairly straight…
Sam Saffron
  • 128,308
  • 78
  • 326
  • 506
4
votes
5 answers

Upgrading ASP.NET from version 1.1 to 2.0 - Any Gotchas?

I know we are really behind the times here, but we are just about to upgrade from .NET 1.1 to .NET 2.0. Thank you for your sympathy. Anyhow, are there any gotchas we should look out for? Do you have any general advice before we jump in? …
AJ.
  • 13,461
  • 19
  • 51
  • 63
4
votes
6 answers

.Net 3.5 WebService can't be called by .Net 1.1 Windows App

I have a weird issue. I had a web service that was compiled under the 2.0 framework that was being consumed by a windows app that was compiled with the 1.1 framework. This worked just fine. Now, after upgrading the web service to the 3.5 framework,…
Chris Conway
  • 16,269
  • 23
  • 96
  • 113
4
votes
1 answer

Performing and type-safe collection of value types in the early version of .NET

I recently got access to a very old C# code base (very old meaning .NET 1.1 and C# 1.2) in order to find places that could be improved. It is like a window to the past when a bow was the most powerfull weapon. I have never had the opportunity to…
Ondrej Janacek
  • 12,486
  • 14
  • 59
  • 93
4
votes
5 answers

Visual Studio 2010 + .Net Framework 1.1 + Click Once Deployment

First of all, The Winform application is based on .Net Framework 1.1. I have 1.1 SDK installed but 1.1 is not listed in the Target Framework(VS 2010 Beta 2) so I cannot choose the same, the minimal available is 2.0. Am I supposed to install an…
Sloane
4
votes
3 answers

How to return custom objects with WebServices

[Problem] Having created a shared library that is to be deployed on a server machine and client machine how do I communicate between the client-server with the classes provided by the library? Transferring the information via webservices does not…
Gavin Chin
  • 558
  • 1
  • 6
  • 16
1 2
3
24 25