Questions tagged [.net-1.0]

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

The 1.0 version of the .NET Framework.

Version Number: 1.0.3705.0
Release Date: 2002-03-05

28 questions
13
votes
7 answers

Can .NET intercept and change css files?

UPDATE 1: I have now setup IIS6 so .NET can handle calls to .css files. What do I have to do now to get it to change css files based on the referal url? So if the referal url is http://intranet/, it should continue calling the old style sheets. …
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
6
votes
2 answers

In VS 2003, how to suppress deployment of .NET CF 1.0 every time I debug?

I'm (unfortunately) using VS 2003 to develop for some Windows CE .NET 4.1 mobile devices. The app is written in .NET Compact Framework 1.0 (the OS cannot support any later version of the .NET CF). Whenever I run my app from Visual Studio, it…
Pandincus
  • 9,506
  • 9
  • 43
  • 61
4
votes
3 answers

Where can I find .NET v1.0.5000.0?

I've just been informed at my workplace that we have an application that is used in production that has stopped working. I'm searching as best I can to find where the source for the application is in our source control but without much luck. I'm…
mezoid
  • 28,090
  • 37
  • 107
  • 148
4
votes
4 answers

Does the order of extern and static matter?

Comparing two files (old and new), I see: private extern static void SipShowIM(uint dwFlag); ...in the old file, and: private static extern void SipShowIM(uint dwFlag); ...in the new file. Why they got changed I don't know; does it matter which…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
3
votes
1 answer

When I publish a WCF rest service in IIS the services do not work?

Im using WCF REST 4.0 meaning to say their is no .svc file.. So I have 3 different service classes in one service WCF Rest Application project. And I registered all these services in the Global.asax What im trying to do is that I have a set of…
Ravi
  • 125
  • 3
  • 17
3
votes
2 answers

How can I see the SQL sent to the database after the parameters have replaced their placeholders?

The first MessageBox.Show() below simply shows me the exact same thing as const string SQL_GET_VENDOR_ITEMS, which seems fine to me, but I'm getting, "There was an error parsing the query. [Token line number, Token line offset,, Token in…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
2
votes
5 answers

What Visual Studio for .NET 1.0 web development?

I have a old web application developed in .NET 1.0. How can I do some minor changes in it? What Visual Studio do I need and how do I obtain it? Or can I develop in some other tool? Thanks in advance!
Tiax
  • 269
  • 5
  • 14
2
votes
2 answers

.NET 1.0 ThreadPool Question

I am trying to spawn a thread to take care of DoWork task that should take less than 3 seconds. Inside DoWork its taking 15 seconds. I want to abort DoWork and transfer the control back to main thread. I have copied the code as follows and its not…
dotnet-practitioner
  • 13,968
  • 36
  • 127
  • 200
2
votes
2 answers

Would prepending an empty string to HashTable.Add() possibly be the culprit of "value does not fall within the expected range"?

I can't for the life of me figure out why the legacy code is doing this: HashSiteMapping.Add(""+sm.SiteNumber, sm.LocationNumber); ...when this seems more sensible: HashSiteMapping.Add(sm.SiteNumber, sm.LocationNumber); I would just shrug my…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
2
votes
4 answers

How do I create an automated build file for VB.Net in NAnt?

I have taken over the development of a web application that is targeted at the .net 1.0 framework and is written in C# and Visual Basic. I decided that the first thing we need to do is refine the build process, I wrote build files for the C#…
mmattax
  • 27,172
  • 41
  • 116
  • 149
1
vote
2 answers

Do I need .NET 1.0/1.1 to run apps built on those versions, or can I upgrade to 3.5?

We have many new computers and have some needed old apps created using .net 1.0 and some created with .net 1.1. Will these apps work if I install only .net 3.5? The applications are desktop apps.
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
1
vote
1 answer

save image in oracle database with oledb provider

i want to save image file in oracle database in blob data type field,but because OleDbType type(OleDbType.Binary) does not support blob data type , when I am trying to save file it is not receiving file more then 25kb size image file and showing…
user1435149
  • 11
  • 1
  • 3
1
vote
2 answers

Can Visual Studio 2008 Reference 1.0 Assemblies?

I've got an older assembly (Office XP PIA) that appears to target the .NET 1.0 framework. The assembly has been registered and is visible in the GAC (as well as the Win32 registry), but it doesn't appear in Visual Studio 2008 when I choose "Add…
bryanbcook
  • 16,210
  • 2
  • 40
  • 69
1
vote
1 answer

ASP.NET .NET Framework 1.0 and Authentication

I have an older ASP.NET (.NET 1.0) web application that is using Windows authentication. We want to remove the Windows authentication since the AD server for this particular web application needs to be decommission. We want to keep some type of…
Lakeshore
  • 323
  • 1
  • 7
  • 18
1
vote
1 answer

What could be causing an NRE when closing a form?

Under certain circumstances, I get an NRE when closing a form using its Close button, which simply calls the native (WinForms) Close() method. Certain paths through the code do fine, but one particular path causes the Null Reference Exception. Since…
1
2