Search

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

Matching Posts

  • Re: Odd Routing Error: Would Not Refresh New Routing Rules

    Look in the system tray (next to the clock) for the VS Asp.net process. Right click and press stop. Then rerun the app.
    Posted to ASP.NET MVC (Forum) by srulyt on 12/31/2008
  • Re: newbie question: Proper Use of the Model

    If your model has ant serious amount of Business Login or DB access it is best practice to seperate thos into projects and call these Dlls from you controllers. The Model folder is good for simple models but more complex systems shouldnt really use it at all. Take a look at some of the MVC sample apps on the web for a better picture. MVC storefront. Oxite
    Posted to ASP.NET MVC (Forum) by srulyt on 12/31/2008
  • Re: MVC Controller and URL logic?

    You can access Request.Url from your controller. To pass a URL you will have to mock the controllercontext for more info http://www.hanselman.com/blog/ASPNETMVCSessionAtMix08TDDAndMvcMockHelpers.aspx
    Posted to ASP.NET MVC (Forum) by srulyt on 12/30/2008
  • Components?

    I have heard a bit about components in MVC. Please point me in the right direction to find out more about them.
    Posted to ASP.NET MVC (Forum) by srulyt on 12/29/2008
  • Re: invalid initializer member declarator

    From the code you posted it seems you are running an old version. Get the latest release (Beta 1) and try again.
    Posted to ASP.NET MVC (Forum) by srulyt on 12/25/2008
  • Re: Database architecture for MVC based CMS

    How would the batch process know to resize the images? would you have it monitoring file system changes or you would notify it from the web app? If we are already discussing these aspects, I have another question. How would you do menus? I was thinking a menu class with Name and MenuType and Items and a menu item class with Name, MenuType (so you can call it one thing but display something else in the UI), Image (for those little icons sometimes put next to menu items), Items (for multilevel menus
    Posted to ASP.NET MVC (Forum) by srulyt on 12/25/2008
  • Re: Centralized page (view) flow

    I don't know of anything like what JSF has but there are ways to debug routes using some tolls available. Check these out http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx http://weblogs.asp.net/stephenwalther/archive/2008/08/03/asp-net-mvc-tip-29-build-a-controller-to-debug-your-custom-routes.aspx
    Posted to ASP.NET MVC (Forum) by srulyt on 12/24/2008
  • Re: Database architecture for MVC based CMS

    Paul, Thanks for the insight. I have missed you valuable input Are you saying that you would use the DB to store URL's and link to them in the HTML? or that you would use the DB to store the file path and then use a handler to show them?
    Posted to ASP.NET MVC (Forum) by srulyt on 12/24/2008
  • Re: Database architecture for MVC based CMS

    When you put the images in the DB do you associate them to the other content in the DB or do you just use them on their own using a handler and as far as the content is concerned they are just like images on the file system?
    Posted to ASP.NET MVC (Forum) by srulyt on 12/22/2008
  • Re: Database architecture for MVC based CMS

    Thanks for all the valuable input. I think I will go with the generic table for more flexibility and if i see that it has serious performance issues i will refactor. One more question, should i put images in the DB or on the disk with just the path in the DB. I have seen it done both ways and was wondering what the pros and cons are.
    Posted to ASP.NET MVC (Forum) by srulyt on 12/21/2008
Page 1 of 23 (226 items) 1 2 3 4 5 Next > ... Last »