Search

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

Matching Posts

  • Re: Starter Kit msi not installing anything

    Paul, you are quite right, I must have been following old advice relating to Preview 1. The files are exactly where you said they would be. Thanks.
    Posted to WCF REST Starter Kit (Forum) by AnthonyWjones66 on 6/2/2009
  • Starter Kit msi not installing anything

    I've trying to install the WCF REST Starter Kit Preview 2 from the MSI provided on codeplex. However after the install has spent plenty of time seemingly doing stuff and reporting a successful install it doesn't appear to have done anything. There is no new folder in Programs Files and the Visual Studio Component installer doesn't launch so there are no new templates added in My Documents. I've tried this on my Server 2008 box and an XP Pro machine. Both machines have the latest installs
    Posted to WCF REST Starter Kit (Forum) by AnthonyWjones66 on 5/24/2009
    Filed under: msi install fail
  • Re: What is wrong with this method

    The reason you haven't had answer is because there is nothing wrong with the code. Its clear that:- var loggetbruker = from l in cd.InnLoggetBrukers where l.romID == Convert.ToInt32(lblChatroomID.Text) select l; Should be producing the correct results. I would suggest you use this:- SELECT * FROM InnLoggetBrukers WHERE romID = 1 -- replace 1 with a real room ID. and see what you get. Are you sure that "logout of room" code is working ok?
    Posted to C# (Forum) by AnthonyWjones66 on 11/27/2008
  • Re: Getting delay in response from server

    It would be helpful if you quantify the delay, .5 second, 2 seconds, 10 ? If you restart the browser do you get the same delay the first time? Have you used a tool like fiddler to compare the behaviour of the two?
    Posted to C# (Forum) by AnthonyWjones66 on 11/27/2008
  • Re: MVC Documentation

    Paul, thanks but I've seen the quick start, its just another tutorial, it isn't documentation. I guess MVC is still a little immature to have the documentation built. The quickstarts and other tutorials all suffer from changes being made to the interfaces. For example, Ajax.Form used in the Quick start tutorial is now Ajax.BeginForm. It just frustrating not being able to fully understand something like Html.ActionLink because it has 10 overloads at present but you'll only find a few of
    Posted to ASP.NET MVC (Forum) by AnthonyWjones66 on 11/25/2008
  • MVC Documentation

    Its nice that we have lots of examples, tutorials and Vids on using MVC but we're at the point now where some semblence of a coherent documentation would be useful. Does that exist anywhere?
    Posted to ASP.NET MVC (Forum) by AnthonyWjones66 on 11/25/2008
  • Re: Error For 'System.Collections.IEnumerator' and 'System.IDisposable'

    Why are you employing the using construct here? I doubt you need it.
    Posted to C# (Forum) by AnthonyWjones66 on 11/15/2008
  • Re: Generic List compare

    Answered here: http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/c0b3b125-5f10-4f3c-9ca0-30e141622ce6 In brief its not simple.
    Posted to C# (Forum) by AnthonyWjones66 on 11/14/2008
  • Re: How to remove previous node

    Simplify to:- XmlNode node = xmldoc.SelectSingleNode( "/Book/BookList/BookItem[ISBN='05']" ); // Where xmldoc is of course your XmlDocument containing your book list if (node != null ) node.parentNode.removeChid(node);
Page 1 of 1 (9 items)