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
3
votes
1 answer

Building VS 2003 Solution Using Devenv.com on Build Server With Windows Server 2008 R2

I am trying to build .NET Framework 1.1 solution (VS 2003) on a TFS build server 2008 which is on windows server 2008 R2 machine. I am following the instructions from this website http://blogs.msdn.com/b/nagarajp/archive/2005/10/26/485368.aspx and…
Baahubali
  • 4,604
  • 6
  • 33
  • 72
3
votes
2 answers

Logic for getting number of pages

If a page can have 27 items printed on it and number of items can be any positive number then how can I find number of pages if I have number of items, I tried Modulus and division but didn't helped. double TotalNumberOfPages = NumberOfItems/27; int…
tereško
  • 729
  • 1
  • 8
  • 16
3
votes
0 answers

The underlying connection was closed: Could not establish secure channel for SSL/TLS

I am using the .NET web service to exchange the XML file over the secure channel i.e. using the SSL certificate. The web service is developed in vb.NET 1.1 and hosted on windows server 2000. While sending the file I am getting the below error…
Manoj Raut
  • 35
  • 5
2
votes
3 answers

Migration of .Net Project from Framework 1.1 to Framework 4.0 (Windows Application)

I am a fresher working in Windows application using .Net Framework 1.1. We are going to migrate our Windows application from .Net Framework 1.1 to 4.0. What are all impacted when we migrate from 1.1 to 4.0 ? Please help and suggest me since i am new…
Bhaskar
  • 19
  • 1
  • 2
2
votes
2 answers

Parsing JSON array of objects

I need to store a set of values which I get from my C# code to a javascript array. Im getting an error .. Can someone tell what the error is ? Im using this jcode. $.get('Dataextract.aspx', function (data, textStatus) { alert('Status is '…
Kshitij Banerjee
  • 1,678
  • 1
  • 19
  • 35
2
votes
2 answers

Memory Could not be Written Error on MSI

I'm trying to install an application using a VS Setup project for .NET 1.1 in Windows7 (with the .NET framework 1.1 already installed). The installer has 2 projects it uses for configurations, where the first one is called CustomActions.vb and has…
PedroC88
  • 3,708
  • 7
  • 43
  • 77
2
votes
4 answers

How to respond events while a threaded operation is running in .NET

I have a class to launch background operations in a WinForms application. I need to write this background worker since my requisites are using .NET 1.1, so I cannot use BackgroundWorker, that is only available from .NET 2.0 This class get a delegate…
Daniel Peñalba
  • 30,507
  • 32
  • 137
  • 219
2
votes
0 answers

Trace a .NET 1.1 Web Service call

I'm having an issue trying to find an error with a web service using .NET 1.1. In .NET 2.0/3 I can add a trace section to my web config like:
John T
  • 2,687
  • 2
  • 27
  • 36
2
votes
3 answers

Is there a way to run an ASP.NET 1.1 web application completely self-contained (without IIS or SQL Server)?

I have an ASP.NET application that we are currently hosting for an external client which is built with .net 1.1 running on IIS and SQL Server 2000. However, I don't want to host this application any longer and want to give it to the client so they…
Industrial Themes
  • 557
  • 2
  • 9
  • 26
2
votes
1 answer

Dump All Strings from .NET 1.1 Memory Dump in WinDbg

I Have a .NET 1.1 memory dump I'm trying to analyze it, and while I can load .NET 1.1 SOS.dll fine, the problem is the SOS extension is missing a lot of commands. Unable to use SOS.dll from later .NET framework as I get this error message: Failed to…
Malcolm McCaffery
  • 2,468
  • 1
  • 22
  • 43
2
votes
0 answers

Problems trying to deserialize string into a object

today I have a simple json object like this: [ { "Code": "My Sample Code", "Description": "My Sample Description", "Permissions": [ { "Id": 432, "Name": "FIRSTPERMISSION" …
Otávio Larrosa
  • 303
  • 2
  • 12
2
votes
1 answer

c# convert string to single

i have a program running for a while and everything works fine till this weird thing happens. when i convert a number string to Single, i just can't get the value i want. for example: Convert.ToSingle("11006.954") return the value…
nonetaku
  • 303
  • 1
  • 5
  • 7
2
votes
2 answers

Calling a .NET 4.0 component by .NET 1.1

I work at a financial institution, in a team whick takes care of a "home-made" corporate component. This component was built using .NET 1.1, and the other teams use it a lot, specially along with the legacy systems (the ones which are still in .NET…
Fabio
  • 3,020
  • 4
  • 39
  • 62
2
votes
5 answers

How do you make a .NET executable run as a 32-bit process on a 64-bit OS?

I want to make my .NET application run as a 32-bit process on a 64-bit machine with .NET1.1. The target platform option was introduced in later versions of VS(2005), but I am using VS2003 and .NET1.1 and don't have an opportunity to use other VS or…
Armen Tsirunyan
  • 130,161
  • 59
  • 324
  • 434
2
votes
1 answer

Best framework for Unit-Testing some legacy ASP.NET 1.1 code

I have legacy asp.net 1.1 website. It has a very poor VB layered achitecture. Debugging takes about 10 minutes to run the credit card processing tests. I'd like to add some unit testing capabilities to the solution to check my changes. I was…
bendewey
  • 39,709
  • 13
  • 100
  • 125