| Thread | Last Post | Replies |
|
| Framework 2.0 and VS.net 2003 | 03 Mar 2006 15:49 GMT | 7 |
I've been using VS.NET 2003 and Framework 1.1 for over a year. I 'm interested in using Framework 2.0, particularly because of it's enhanced Compact Framework for Smart devices. I'm still unlclear on whether I can just load this and it will work with
|
| Showing Windows Forms in the ASP.NET process | 03 Mar 2006 15:29 GMT | 6 |
Thanks for looking at this post:) Does anyone knows how to make the asp.net process runs in the UserInteractive mode? I just want to show some Windows Forms in my asp.net application on the
|
| FTPWebRequest doing it's own thang | 03 Mar 2006 13:56 GMT | 1 |
The following code to connect to a Stratus VOS system does not work because as you can see in the trace output the WebRequest has decided to do it's own thing and issue a PWD after which it issues a CWD based on the reply.
|
| .net profilers | 03 Mar 2006 13:43 GMT | 2 |
We have a lot of .net based applications that falls into the following categories. 1. In house developed web apps 2. In house developed windows apps
|
| How can I know all data has been received? | 03 Mar 2006 08:22 GMT | 1 |
I'm using Socket and to send some data (3Mb, 4MB, or more than that). I convert data to byte array and use Send method and data is successfully sent. From other side, I use Receive method. I put data in a file and when all data has been received, I have to close the file. The ...
|
| Chaining proxies for a HttpWebRequest | 03 Mar 2006 06:57 GMT | 3 |
Does anyone know if it is possible to chain HTTP proxies when sending a HTTP request with HttpWebRequest, for a .NET Framework 1.x in C# ? I need that because of an application I'm developing that may need this functionality.
|
| Window Firewall manipulation in .NET framework v2.0? | 03 Mar 2006 06:15 GMT | 1 |
I'm and v1.1 user that's moving toward v2.0. I want to ask a simple question that, "Does .NET framework offers object to manipulate Windows Firewall(the one in WinXP SP2 or Win2k3 SP1)? Or I still have to use those firewall APIs?" Seems that I can't found it in the ...
|
| ADFS and ASP .NET impersonate | 03 Mar 2006 06:09 GMT | 2 |
I have problems with impersonating in ASP .NET (both 1.1 and 2.0 framework). When I authenticate an application through ADFS, the imperonation won't work. I only get the anonymous user when I try to access network resources through
|
| static class Program in Program.cs in VS 2005 | 02 Mar 2006 22:22 GMT | 4 |
When you create a new windows application in VS 2005, you have a Program.cs file which declares the class Program as static. Is there any reason that this MUST be static? I want to take the work static out so that I can declare a variable that is a member of Program so that it
|
| Issue with CLR Debugger? | 02 Mar 2006 22:15 GMT | 1 |
I am trying to use CLR Debugger, but i am unable to open up 'Disassembly' window. Now here is what i do. First off, i open up my exe using 'Program to Debug' i.e. MyProject.exe and then i open up my 'MyProject.cs' i.e. C# source code file by going to
|
| VS.NET 2003 Install problem | 02 Mar 2006 21:58 GMT | 4 |
Trying to install VS.NET 2003 Academic... I already have Visual Web Develpoer and Visual Basic Express installed and working fine. When I put in my first disc for 2003, it says I need prerequisites and then I put in that disc... hit OK and the disc spins a little and the VS.NET ...
|
| running .net 1.1 dll in .net 2 host | 02 Mar 2006 21:56 GMT | 1 |
Hi, we have lots of dlls built on .net 1.1. Now we start to build a new dll on version 2. But this new dll need to reference other .net 1.1 dll. My question are the following: 1. which machine.config it use ? can 1.1 dll read the new
|
| override and internal | 02 Mar 2006 19:49 GMT | 2 |
In a base class, a method is declared protected internal virtual object SaveViewState(); I can override it protected virtual object SaveViewState(); but I can not add the internal keyword. Why not?
|
| VB.NET - Mutliple Inheritance | 02 Mar 2006 18:08 GMT | 1 |
Okay say I was writing a game engine and it had two parts: The actual engine and a map editor. Both the engine and the editor use the same classes to store the information about the AI through a DLL so that I can use Serialization. Now here's my problem: The engine's classes must ...
|
| Handling events without explicitly defining a handler | 02 Mar 2006 17:47 GMT | 6 |
I have a Windows form application that (naturally) instantiates all sorts of objects. I have a base object that contains an event. Lots of other objects inherit from this event. When the base object or any derived object is instantiated I would like to automagically start ...
|