Search

You searched for the word(s): userid:298226

Matching Posts

  • Re: Custom Config Section, .NET 2.0

    In your ConfigurationElementCollection subclass, you typically have an indexer that uses BaseGet(string) to extract specific elements. See here for an example: http://msdn2.microsoft.com/en-us/library/system.configuration.configurationelementcollection.aspx
    Posted to Configuration and Deployment (Forum) by BoulderBum on 2/14/2008
  • XML Collection Serialization Question

    I have classes sort of like this. public class Parent { public List<Child> Children; } public class Child { [XmlArrayItem("granddaughter", typeof(Granddaughter))] [XmlArrayItem("grandson", typeof(Grandson))] public List<Grandchild> Grandchildren; } public abstract class Grandchild{} public class Granddaughter : Grandchild{} public class Grandson : Grandchild{} I want the XML to look like this when I serailize it: <Parent> <Child> <Grandson/> <Granddaugter
  • Re: Custom Config Section, .NET 2.0

    That was a really great post. Very helpful, and well done!
    Posted to Configuration and Deployment (Forum) by BoulderBum on 6/27/2007
  • Simple Question: How To Create a Form

    Is it possible with to create a form with SQL Server reporting services? For instance, can I create a form letter that says: "Dear ..." where I fill in the name of the recipient via the data that comes back for the report? If so, does anyone have a good simple tutorial for doing something like this? I can't seem to find anything on Google (though I may be using the wrong search terms). All I can seem to find is stuff on creating tables of repeated data, instead of repeated forms.
  • Local Report and ObjectDataSource: Doesn't Begin to Work

    I'm trying to create my first report with Visual Studio 2005 (in a Web Application Project) and it just doesn't work. I'm walking through the tutorial here: http://msdn2.microsoft.com/en-us/library/ms252094(VS.80).aspx and I'm stuck on the place where I view my objects in the "Website Data Sources" Window. Basically none of my objects show up. Never did. It's very frustrating and I don't know how to move forward with the report without the data sources showing up (I tried manually assigning an ObjectDataSource
  • Re: Drag-and-Drop

    Do you guys know if either the DragPanel or drag/drop API has client-side eventing? The problem I had with the Atlas drag/drop stuff is that I could drag an element, but without client-side events I really couldn't do anything of value: it was more of a novelty.
    Posted to ASP.NET AJAX UI (Forum) by BoulderBum on 1/29/2007
  • Drag-and-Drop

    Does the release version of ASP.NET AJAX include drag-and-drop capabilities? I remember Atlas had some capabilities, but I was waiting for them to mature (and raise events specifically) before I started using them. Now I can't seem to find anything about the drag-and-drop stuff.
    Posted to ASP.NET AJAX UI (Forum) by BoulderBum on 1/29/2007
  • Did Features Get Fixed In RC?

    I loved ASP.NET Ajax back when it was "Atlas", but I haven't used it much since. There were a few things that really bothered me about the framework, however, and I'm wondering if things have changed. In particular: 1. Is there a concept of an "event" in the client script library for the built-in features (like are there events like "DragStart" for the drag/drop functionality for example). 2. Does ASP.NET Ajax still require the SciptManager/ScriptManagerProxy malarky? I was hoping there would be
  • Apache and Basic Authentication

    I'm trying to do something that seems simple, but is proving frustrating. Basically, here's the situation. I'm trying to call a PHP web service hosted on Apache that uses Basic authentication. .NET apparently expects a challenge/response via a 401 error code (invalid credentials) but Apache delivers back a 500 (internal server error). According to my Googling, I'm supposed to be able to overcome this problem by taking steps to use the PreAuthenticate property thusly: MyService service = new MyService
    Posted to XML Web Services (Forum) by BoulderBum on 12/14/2006
Page 1 of 61 (607 items) 1 2 3 4 5 Next > ... Last »