Search

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

Matching Posts

  • Visual Studio 2008 Registration

    Hi All, I installed VS2k8 on my laptop a couple of months ago and used it there maybe once. Didn't register it in time. Now when I open it it tells me the trial period has expired and I must upgrade and opens a browser window. I can't get to the program to register. Does anyone know what to do short of uninstalling/reinstalling and then (obviously) registering right away? Thanks in advance!
    Posted to Visual Studio 2008 (Forum) by FoolongC on 11/28/2009
  • Re: Visual Studio 2008 Registration

    I should have said up front that what I installed was pre-pidded. The iso from my MSDN license didn't require a product key for install. Should I just uninstall and reinstall? Or if I remount the iso will that take care of it?
    Posted to Visual Studio 2008 (Forum) by FoolongC on 11/28/2009
  • Re: Linq to XML - add decendants to new XDocument

    This statement: System.Xml.Linq.XElement xElem = new System.Xml.Linq.XElement("league"); ended up creating this in the XMLDocument: <league/> So I tried this: System.Xml.Linq.XElement xElem = new System.Xml.Linq.XElement("league", " "); and got this <league> </league> but then got a compile time error stating this: xDoc.Add(teamElems); would result in a poorly formed document Not sure if it's because I've created a space in the document or if
    Posted to XML and XmlDataSource Control (Forum) by FoolongC on 9/14/2009
  • Linq to XML - add decendants to new XDocument

    If the following query returns five "teams": var teamQuery = from a in _document.Descendants("team") select a; how can I add all five to a new XDocument? I can add one "team" this way: System.Xml.Linq.XDocument doc = new System.Xml.Linq.XDocument(); foreach (var teamElems in teamQuery) { doc.Add(teamElems); But this breaks on the second iteration. Any help would be greatly appreciated. Thank You
    Posted to XML and XmlDataSource Control (Forum) by FoolongC on 9/13/2009
  • Re: Linq to XML - add decendants to new XDocument

    That worked - thank you! I added the XElement to a new XDocument. But this didn't: var teamQuery = from a in _document.Descendants("team") select a; System.Xml.Linq.XElement xElem = new System.Xml.Linq.XElement("league"); System.Xml.Linq.XDocument xDoc = new System.Xml.Linq.XDocument(xElem); foreach (var teamElems in teamQuery) { xDoc.Add(teamElems); Drilling into teamElems reveals it's an XElement. Any idea why this didn't work.?
    Posted to XML and XmlDataSource Control (Forum) by FoolongC on 9/13/2009
  • Re: Convert XmlNode[] into an XML Document?

    Just in case someone lands here (like I did today): System.Xml.XmlDocument teamDoc = new System.Xml.XmlDocument(); foreach (System.Xml.XmlNode teamNode in teamNodes) { teamDoc .AppendChild(teamDoc .ImportNode ( teamNode , true)); This will create an XML Document.
    Posted to XML and XmlDataSource Control (Forum) by FoolongC on 9/12/2009
  • Html.DropDownList - How to bind an integer result?

    Hi, Trying to create a dd list with ages for selectable values. (this is a practice exercise). <%=Html.DropDownList("AgeDropdown")%> var ageList = from ages in _entities.FB_Age select ages; [ My Age table has column 'Age' as an integer ] IEnumerable<SelectListItem> ageDropDownList = ageList.Select(b => new SelectListItem { Text = b.Age , Value = b.Age.ToString() }); ViewData["AgeDropdown"] = ageDropDownList; b.Age won't compile (have to use ToString
    Posted to ASP.NET MVC (Forum) by FoolongC on 8/29/2009
  • Re: Html.DropDownList - How to bind an integer result?

    Worked! Not exactly certain how. I used the code for the action verbatim but only used the following in the view. <%=Html.DropDownList(("Age")%> Thanks!
    Posted to ASP.NET MVC (Forum) by FoolongC on 8/29/2009
  • Changes to controller not showing up after a publish

    Hi all, I make changes to a controller action and run them locally and I get the behavior I want. But when I send the changed controller to my host provider (with ftp) the expected behavior doesn't show up. When I send a style sheet up ... those changes show up right away. I've tried deleting the controller on the host, running the app, and then sending the changed controller up. No luck. Same thing with both web configs - delete, run, and then send modified ones up. Am I missing a step somewhere
    Posted to ASP.NET MVC (Forum) by FoolongC on 8/17/2009
  • Re: Problems when Publish an ASP.NET MVC web site. Need help. Thanks

    Hey guys, I have a different problem that you might know how to fix. No problems with sending files up for the first time. I get the behavior I want. But when I change views and controllers (and run locally and get the expected behavior) I send them up to my host and the changes don't show up. I send a style sheet up and get the expected behavior. Any idea why?
    Posted to ASP.NET MVC (Forum) by FoolongC on 8/17/2009
Page 1 of 8 (80 items) 1 2 3 4 5 Next > ... Last »