Search

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

Matching Posts

  • Re: How is job condition of programmers in Canada ,Usa ?

    Our economy has gone down the toilet. Stay where you are at, much better. And warmer also! ;-)
    Posted to Jobs (Forum) by mxmissile on 8/14/2009
  • Re: Some subcontracting information

    If you do the subcontract thing, just *make sure* all requirements are clearly written and defined in the contract. Anything that gets added later = new contract. I cannot express the importance of written and defined enough, if these are not clear on the contract, you will get screwed.
    Posted to Jobs (Forum) by mxmissile on 8/13/2009
  • Domain Model vs. View Model

    I have my domain entities, for this example I'll use Order. In my view I need to display certain properties of said Order. With MVC, I'm assuming I create a OrderViewModel like so: public class OrderViewModel { public DateTime OrderDate{ get ; set ;} public decimal OrderValue{ get ; set ;} } In my controller, I instantiate an OrderViewModel and populate with properties from my Order entity then return that to the View. My question is would I fit OrderViewModel to work for all my Views that
    Posted to ASP.NET MVC (Forum) by mxmissile on 3/31/2009
    Filed under: model
  • GridView Questions

    What are you guys using for a GridView replacement with MVC? I looked at the MvcContrib "way", but thats just too much inline C# for my tastes. What are you using to do something like change a row's color based of model criteria? With traditional WebForms you would use OnRowDataBound. Inline if/thens (yuch)? Is there a better way?
    Posted to ASP.NET MVC (Forum) by mxmissile on 3/19/2009
    Filed under: gridview mvc
  • Re: Controller method runned twize

    Are you running Firebug? If so, that is where the second hit is coming from, at least it was for me when I had this problem.
    Posted to ASP.NET MVC (Forum) by mxmissile on 2/24/2009
  • Re: RC View Unable To Find BeginForm()

    ... I had commented out this section in my web.config file: <system.codedom> < compilers > < compiler language= "c#;cs;csharp" extension= ".cs" warningLevel= "4" type= "Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > < providerOption name= "CompilerVersion" value= "v3.5" /> < providerOption name= "WarnAsError" value= "false"
    Posted to ASP.NET MVC (Forum) by mxmissile on 1/28/2009
  • Re: RC View Unable To Find BeginForm()

    It's not just DropDownList, its all the HtmlHelpers, "TextBox", "BeginForm", "EndForm" etc.
    Posted to ASP.NET MVC (Forum) by mxmissile on 1/28/2009
  • Re: RC View Unable To Find BeginForm()

    If I fire up the Object Browser in my project and look at System.Web.Mvc, its pointing here: C:\Windows\assembly\GAC_MSIL\System.Web.Mvc\1.0.0.0__31bf3856ad364e35\System.Web.Mvc.dll If I browse the HtmlHelper class, none of those methods are there "BeginForm", "EndForm", "TextBox" etc. Where are those supposed to be coming from? What am I missing here? Update: Scratch this, I found the extension classes in System.Web.Mvc.Html. Still, why is my view not picking these
    Posted to ASP.NET MVC (Forum) by mxmissile on 1/28/2009
  • Re: RC View Unable To Find BeginForm()

    More data. * If I create a new MVC Application project, it works, I can use the Html namespace. * All my references to new assemblies in my project are pointing here: C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC RC\Assemblies * This was an existing project. * I am using the new Microsoft.Web.Mvc that was downloaded shortly after the RC release. * RS# Intellesense does work with the namespace in the view. If I have the compiler compile the views as per the Release Notes doc, I get the same
    Posted to ASP.NET MVC (Forum) by mxmissile on 1/28/2009
  • RC View Unable To Find BeginForm()

    After un-installing Beta, installing RC, and rebooting. My views all of a sudden cannot find BeginForm(). I'm getting this Compilation Error: 'System.Web.Mvc.HtmlHelper' does not contain a definition for 'BeginForm' I have tried placing this in the View directive: <%@ Import Namespace="System.Web.Mvc.Html" %> I do have this in my web.config file: <namespaces> < add namespace= "System.Collections.Generic" /> < add namespace= "System
    Posted to ASP.NET MVC (Forum) by mxmissile on 1/27/2009
Page 1 of 36 (357 items) 1 2 3 4 5 Next > ... Last ยป