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

About Dynamic Form Design Generating

I'm working in a windows application. using VB.NET 1.1 I have an empty form, and I want to generate my design in load session (not in form_load event! but in my form's constructor) So I know I must generate my components in constructor, but I don't…
R.S
  • 207
  • 3
  • 8
  • 17
0
votes
1 answer

using ELMAH with visual studio 2003

I am trying to use Elmah with Visual Studio 2003, ASP.NET 1.1 (Legacy Application). When i try to add a refernce to Elmah.dll, VS 2003 throws an error which looks like as below: Configuration Error Description: An error occurred during the…
Baahubali
  • 4,604
  • 6
  • 33
  • 72
0
votes
1 answer

jQuery datepicker not working in IE8

Why is the following giving me an error in IE8? It works fine in Chrome:
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
0
votes
1 answer

Drag and drop not working after i used append function

Ok lets" start i have static Drag and drop that look like this http://jsfiddle.net/andrewwhitaker/t97FE/embedded/result/ and this is code
  • iPhone
Vladimir Potapov
  • 2,347
  • 7
  • 44
  • 71
0
votes
2 answers

How could this reference to a string be causing a Null Reference Exception?

There is a struct: public struct ReturnedCommands { public string key; public string command; }; ...and a variable: public static ReturnedCommands returnedCommands; ...and a Null Reference Exception occurring, returning the value…
0
votes
1 answer

web Application in 1.1 is not runing

We have a application in .net farmework 1.1 and i have made it build successfuly, now when tried to run this application i am getting the following error: I have googled and found some settings in IE, i have checked it in IE settings that windows…
Ram Singh
  • 6,664
  • 35
  • 100
  • 166
0
votes
2 answers

Determine which radio button the user has selected

I know some will ask why i am not using asp.net html controls and others will say that I should use asp.net controls, but my question is about how to do this using plain old html controls. If I have the following:
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
0
votes
1 answer

How can we find the execution time of a method in .NET 1.1?

I have a old and legacy web application build on .NET 1.1 .In that application I have shown as web page as pop up . I have a seperate method to show the data in that pop up.I want to find the execution time of that method.As we know the stopwatch is…
Hemant Kumar
  • 4,593
  • 9
  • 56
  • 95
0
votes
1 answer

Why would commenting out a line of code change whether a *previous* line of code is executed?

With this code: using (pbDialog = new pbDialogs()) { ProgressBar = new frmProgress(this, false); ProgressBar.SetProgressLabelText("Inventory Data"); MessageBox.Show("Set progress label text to Inventory data"); …
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
1 answer

What could be causing an IndexOutOfRange exception with this code?

Recently, I've been getting an IndexOutOfRange exception in a particular method. The new code in this function reads a "csv" file (a .txt file renamed with the extension "CSV") and parses it; so it must be code specific to that or else the data…
0
votes
6 answers

XMLTextReader in .NET 1.1

I have a process that reads an XML file. It uses the XMLTextReader class to do this as it is supposed to be a fast, forward only XML parser/reader. Works just great with a 1 megabyte test file but comes to a complete halt when working on a 12 meg…
user6690
  • 31
  • 1
  • 2
0
votes
2 answers

.Net 1.1 framework Container

I must to use 1.1 .NET version Framework (c#). What can I use as Vector,List (object container)? I saw that is not possible to use List or Vector
Safari
  • 11,437
  • 24
  • 91
  • 191
0
votes
2 answers

Page.Tostring() behaves a bit weird in .net 1.1?

I have a control where I have to check in which page I am, so I can set a certain variable accordingly. string pageName = this.Page.ToString(); switch (pageName) { case "ASP.foo_bar_aspx": doSomething(); break; default: doSomethingElse();…
Mafti
  • 675
  • 2
  • 11
  • 28
0
votes
1 answer

IDataReader Issue in .Net 1.1 and .Net 4.0 for Sybase DB

I have a sybase DB which fetches results of a query properly as below... select S.ipoInternalID, clientAccount, clientPrice, clientAccountType, interestOnLoan = CASE WHEN useHIBOR = 1 then …
WPF-it
  • 19,625
  • 8
  • 55
  • 71
0
votes
1 answer

asp:Hyperlink Object reference not set to an instance of an object

For all of my hyperlinks I keep getting this error and not really sure why. I have looked at all of the other questions that are similar but nothing really has helped. Here is the format of the hyperlinks that keep throwing this…
Robert Zeno
  • 67
  • 1
  • 14