Questions tagged [asp.net-1.1]

For issues relating to development with ASP.NET, version 1.1.

ASP.NET is a web application framework developed by Microsoft to allow programmers to build dynamic web sites and web applications.

115 questions
44
votes
4 answers

change the name of output dll

I am working on .net 1.1 legacy system and need to change the name of outputted dll. When I go to change the "output file" under project property it's greyed out and won't let me change it. How do I do this?
socialMatrix
  • 1,423
  • 5
  • 20
  • 36
14
votes
3 answers

ASP.NET 1.1 to 4.0 migration: events not working

I've recently begun migrating an ASP.NET project from .NET version 1.1 to 4.0. This system currently runs on customer site and works. When I migrate the solution via the VS wizard, I don't get any errors. The error is that no server control events…
Jan Kratochvil
  • 2,307
  • 1
  • 21
  • 39
6
votes
3 answers

.NET Framework 1.1 on IIS 7

I have inherited a .NET Framework 1.1 web site that I must host with IIS 7 on Windows Server 2008. I'm having some trouble. 1. Installation I installed .NET Framework 1.1 following these instructions. The installation automatically created a new…
Zack Peterson
  • 56,055
  • 78
  • 209
  • 280
6
votes
3 answers

Windows Server 2012 with ASP.net 1.1?

Is it possible to install ASP.net 1.1 on Windows Server 2012? Have some legacy applications that would be too time consuming/expensive to port at the moment. I was able to go through a convoluted process on Windows Server 2008 where I assembled an…
Sam
  • 9,933
  • 12
  • 68
  • 104
5
votes
2 answers

How to transform a WebService call that is using behaviours?

We have some really old code that calls WebServices using behaviours (webservice.htc), and we are having some strange problems... since they've been deprecated a long time ago, I want to change the call. What's the correct way of doing it? It's…
juan
  • 80,295
  • 52
  • 162
  • 195
5
votes
2 answers

Creating .NET 3.0 sub-applications within .NET 1.1 applications in IIS/ASP.Net

I am basically trying to do the same thing as this question, create a new application within a folder so it could be accessed as follows. * http://www.domain.com/ < Main App * http://www.domain.com/newapp < New App The problem is that newapp is…
Karen
  • 2,296
  • 3
  • 18
  • 19
4
votes
3 answers

How do you assign null value to optional parameters in VB.NET 1.1

I tried DbNull.Value but no luck. How do I assign a default value as null to a string parameter that is null in VB.NET? Its litte strange to see that VB does not have anything like plain null as most of the other languages do. Also what is the…
Tintin
  • 2,853
  • 6
  • 42
  • 74
4
votes
1 answer

IIS 6 not serving up asp.net 1.1 pages?

Ok, this is strange. Some background Windows 2003 R2 SP2 32-bit IIS 6.0 I've got a very simple dot.net 1.1 example app that just echoes something to the screen via a response.write. Works fine on my workstation. Once I deploy it to this server,…
Dave
  • 1,910
  • 2
  • 21
  • 27
4
votes
3 answers

Creating a back button in ASP.NET

I have an old application which has numerous webforms. On every aspx page there is a designated back button, which takes the user to the previous page. All the buttons have the javascript onclick event set to history.back(). On one of the aspx…
Animesh
  • 4,926
  • 14
  • 68
  • 110
3
votes
2 answers

Mono ASP.NET 1.1 Support

I haven't found anything about it on the web, does mono support ASP.NET 1.1 Thanks!
Cosme
  • 35
  • 3
3
votes
2 answers

Explicitly define control prefix in ASP.NET 1.1?

I've got some (badly written) legacy code that I have to modify but I'm having an odd problem with the prefixing of the controls. The main page has several include files, including cpct_cost.aspx. Within that included page is a control…
The Evil Greebo
  • 7,013
  • 3
  • 28
  • 55
3
votes
4 answers

How do I logout of multiple asp.net applications?

I have a main asp.net app, which is written in asp.net 1.1. Runnning underneath the application are several 2.0 apps. To completely logout a user can I just logout of the 1.1 app with FormsAuthentication.SignOut or is it more complicated than that?
3
votes
2 answers

Cannot open an old ASP.NET 1.1 application (solution) in VS 2003

I have a Problem with an very old ASP.NET 1.1 application. I cannot open (load) it in Visual Studio 2003 (on a Win 2003 server) any more. I get an error message,that the component for the communication with the "Front Page - Server Extensions"…
Elmex
  • 3,331
  • 7
  • 40
  • 64
3
votes
1 answer

Custom thread started in Application_Start

I have to deal with legacy ASP.NET application written in .NET Framework 1.1. When checking the application code I found interesting part. The application starts custom thread in Application_Start event handler (Global.asax). This thread must run…
Ladislav Mrnka
  • 360,892
  • 59
  • 660
  • 670
3
votes
5 answers

Sql ORDER BY alphabetically no casesensitive

Today I encountered problem that causes difficulty for me to solve it. In application I want to display records in aphabetical order thus in SQL statement I'am using ORDER BY, But it looks like CAPITAL letters are before lowercase letters so record…
user3455363
  • 408
  • 1
  • 5
  • 13
1
2 3 4 5 6 7 8