.net-1.1

How do you pass user credentials from one process to another for Impersonation in .NET 1.1?

I have a Windows Service (written in .NET 1.1) running under a specific user account and instances of the service running on several servers. I would like to pass user credentials (username, password, domain) to the service from a WinForms application and have the service read/write files in the server's local file system impersonating...

DataGrid Export to Excel Issue

Hi, I have datagrid from where i need records to export to excel. I have follow the code from http://www.c-sharpcorner.com/uploadfile/dipalchoksi/exportaspnetdatagridtoexcel11222005041447am/exportaspnetdatagridtoexcel.aspx This works perfect but with only one issue. When i export into excel, i see the paging (...10,9,8,7,6,5,4,3,2,1)...

Integrate Moodle and .net 1.1 application to single log on

Hello, My situation is, I have a .net 1.1 application to provide enrollment of courses, and some courses are provided by a moodle site. So when the user enrolls a course and he will be provided the URL link to moodle. But moodle requires the user to log on again. How can I implement a single log on? Thanks! ...

How to call WCF service from .NET 1.1

Hi, I have a WCF service which I'm trying to call from a simple .NET 1.1 client. The problem I'm having relates to the sending of "Client Credentials" to the service. In .NET 3.5 I can add the following lines so that the username and password are sent in the message (SOAP) header: service.ClientCredentials.UserName.UserName = "USERNAME...

some questions on migrating ASP.NET 1.1 application to 3.5

Hi, I need to migrate a ASP.NET application from 1.1 to 3.5. I have gone through the answers on this forum already, but still have some questions should I convert the application from 1.1 to 3.5 directly? OR convert it to 2.0 first and then to 3.5 and the reasons for doing so. Is there any article that walks through the whole convers...

.NET 1.1 Process.ProcessName and performance counters

Our customer has a HTTP Remoting endpoint with a framework method that attempts to find out the name of the current running process. In calling System.Diagnostics.Process.ProcessName it intermittently gets into this error condition in some of their Windows 2003 servers. Error Message : System.InvalidOperationException: Couldn't g...

How to find out where performance of an ASP.NET 1.1 webserver leaks to (outside of page renderings)

I got a problem with a system running on ASP.NET 1.1. It's a topic right now, but actually it's a recurring issue: Sometimes, the system will become extremely slow, and I wonder if there's a tool to find out what's going on. I know that sounds vague, but that's exactly what my problem is about. The thing is, I can time of course my scr...

SFTP using VB.NET 1.1

Hi one of the task assigned to me is convert the FTP Application to SFTP using VB.NET 1.1. I am looking the on the internet but I am not getting any free/open source API which support this. Is anybody know about this? if yes could you please share the code? Thanks Jwalin ...

.Net 1.1 Application - Stack Overflow - Slient shutdown - Dataset bug?

Im a developer for a major company and we are facing a nasty crash scenario. Some background the application is fundamentally a message processing system. The aplication has a large in memory dataset shared across several threads. Access to the dataset is syncronised (usually) The in memory dataset contains several tables Most message...

.NET 4.0 framework on same server as .NET 1.1

Can these framework versions work and play well on the same server? Meaning that can IIS support two application pools where one pool is configured with .NET 4.0 and the other with .NET 1.1. EDIT: This question is concerned with IIS 7. ...

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 whole life of the application. Long time ago I read that this should be never used but I do...

Show/Hide fields depending on application/data version

Hello all, Imagine this scenario (in ASP.NET): You have one page with field1 and your client wants you to move it to another page, since the concept of the term changed. Now, you need to move the field to another table, because it doesn't make sense at old one, but you need the values from that old table as well - to keep the same valu...

Is there an easy way to detect .NET 1.1 dependencies in a solution?

Hi, I'm maintaining some older .NET applications, and twice this week there have been problems when customers tried to move their apps over to new hardware (two different apps). In both cases the problem was solved by installing .NET 1.1 The question is, is there an easy way to find these dependencies in the source code, so that future...

Will .NET Framework 1.x apps run on PC's with .NET 4.0 only?

Basically, i am trying to determin if an application made for 1.x will run on a computer with just one copy of the .NET framework installed which is a higher version than what i am targetting, ie: it only has one copy of .NET 2.0, or 3.0, or 3.5 or 4.0 - has one copy of either of these and thats it, the hypothetical computer would not ha...

Windows Form .Net 1.1 & WCF

Hello Guys, I've been tasked with finding out if it's possible to have a WCF service that can be hooked into by a Windows .Net 1.1 application, as well as newer web applications and one mobile app. I've done a fair bit of reading on the subject but I've got next to no experience on winforms or the .net framework prior to 2.0. Any help...

UIP Application Block in .NET 4

Hi guys, I am involved in migrating a legacy application built in .NET 1.1 to .NET 4. Is UIP (User Interface Process) still available in the latest released of EnLib 5? If no, what are my options? Regards, Karan Misra ...

to rewrite url in Global.asax, ASP.NET

HEllo. I need replace double slashes in one slash. I am planning do this in Global.asax Application_BeginRequest event. Is it enough? or better do a http module? Thank you. UPD Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs) ' Fires at the beginning of each request Thread.CurrentThread.CurrentCul...