.net-2.0

ASP.NET InnerXml automatically/incorrectly appending attribute text to tags

So I have some XML in the following format: <somenode> <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <title/> </head> <body> <p>P one</p> <p>Another p</p> </body> </html> </somenode> Nestled in there is some html, which I didn't think would be an issue...

Are event subscribers called in order of subscription?

Is it safe to assume that event subscribers are called in order of subscription? Example: void One(object sender, EventArgs e) {} void Two(object sender, EventArgs e) {} event EventHandler foo; foo += One; foo += Two; Is One() always called before Two() when the event is fired? Edit: You should ofcourse not rely on it, I was just...

Why not upgrade to the latest .net framework

I see a lot of people has .net 2.0 or even 1.1 as a requirement for their projects. In my own workplace there is also lots of skepticism for upgrading to the latest and greatest .net framework. As a programmer I feel it is very frustration working with the older frameworks when you know that you could have done this so much easier with...

What are alternative ways to suspend and resume a thread?

The two methods Suspend() and Resume() are obsolete in C# .Net 2.0. What are other alternatives and any examples? ...

Asp.net session expiry redirect to login page

What is the best way to redirect to the login page when the session expires. I'm using sessionState mode="InProc" Can I set this in the web.config file? ...

WinForms Load vs. Shown events

Hopefully I'm just missing something obvious, but I'm trying to get my head around the differences between the Load and the Shown events in WinForms. Traditionally I've only used Load (or actually OnLoad, since I think it's cleaner to override a method than to rely on the designer to hook up an event on yourself), since that is availabl...

XSD class generation nested tables problem

Currently I'm having a problem with generating class files from a xsd with repeating elements. I’m using the custom tool ‘MsDatasetGenerator’ in VS2005 SP1 witch create a typed dataset from the xsd for c#. I’m trying to parse the xml by this schema <?xml version="1.0" encoding=\"utf-8\"?> <xs:schema id="XSDobject" targetNamespace="h...

Sending data between an asp.net page and a pop up page?

What are the different ways of communication between asp.net page and a popup page? Query strings etc. Which is most secure? ...

Convert bitmaps to one multipage TIFF image in .NET 2.0

How can i convert an array of bitmaps into a brand new image of TIFF format, adding all the bitmaps as frames in this new tiff image? using .NET 2.0. ...

How to submit a form using the Enter key in asp.net

I have 3 buttons in a form. One of them is the submit button. How can I make it the default button to be clicked when I press the enter key. Is there a property for this? ...

Automated Build Tool With Managed C++ (.NET 2.0)

I'm laying the groundwork for an automated build process and am trying to make sure I start down the right path. Our codebase is a mixture of Managed/Unmanaged C++. The managed part is in .NET 2.0 and all of the projects are part of a Visual Studio 2005 solution. Right now I'm looking at NAnt, but I can't figure out how to perform a bui...

Trying to add a ToolStrip to a ToolStripPanel side-by-side with an existing ToolStrip

I'm using .net 2.0 with Visual Studio 2005 and I am trying to add two different toolstrips to the top of the form such that they show up side-by-side. I want it to be like Word 2003, where you can add multiple toolstrips to the same row and have them show up in line with each other, rather than dedicating a row to each toolstrip. So I ...

Visual Studio missing "Add Installer" link in service project

I'm building a Windows service and following this MSDN article, but I'm stuck on step 3 under "Create an installer". I can't find the "Add Installer" link it's referring to. I've clicked everywhere, including following the instructions it gives exactly, but I can't seem to find it. A few people on Google have had the same problem, but ne...

WinForms: Tying actions together

I remember back when I used to do C++ Builder apps, you could create an action, then associate a menu item or context menu item, etc to the action. That way if you dis something like disable the action , the associated menu items would all be disabled. Is there something like that in a .net 2 winforms app? ...

Bluetooth for WindowsCE 5.0 and .NET2.0 with C#

I'm looking library, to create Bluetooth connection between my device and other devices. I want use: .NET2.0 for Windows Mobile WindowsCE 5.0 ...

Replace UpdatePanel with JQuery

I'm using UpdatePanel to asynchronously call a button click event in a page that calls a method in another class which writes out an XML file on the output. Is there a way to do this with JQuery instead of UpdatePanel? ...

How do I get NAnt to use the new VB9 compiler for .NET 2.0 applications?

How do I tell NAnt to use the same VB compiler VS2008 uses when it creates .NET 2.0-targeting applications? I have switched a web application to VS2008 back-targetted to .NET 2.0. I can run NAnt (0.85rc4, 0.85, and 0.86b1) just fine once I do this. When I try to use some of the VB9 syntax, that still compiles just fine back to a .NET 2....

Need an exercise suggestions to help me learn and exercise .NET

Do you have any idea for a complex exercise that touches and covers most important and major concepts of .NET? (so I can learn while coding and implementation) The exercise should NOT be for beginners, but for someone who already familiar with .net, but enough complex to teach new features of .NET 2 for example. Thanks! ...

How can one IIS6 .NET app appear as subsite of another?

SiteA.com and siteB.com are .NET 2.0 apps on IIS6. SiteA uses SSL. Can I set things up so siteA.com/train gets people to siteB.com? Are there multiple ways to do this? How would a good way be configured? ...

Threading.Timer vs. Forms.Timer

The short form of this question: When, if ever, is it appropriate to use the Forms.Timer in a multithreaded WinForms application? More specifically, I am architecting an application that uses multiple System.Threading.Timers to launch processes asynchronously, check queues containing the results of those asynchronous processes, and upda...