Search

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

Matching Posts

  • Re: Can't get ExcludeFromBuild to work....

    puterart, wish I could help but my issue was over a year ago and I can't even recall the exact problem, much less what I did to solve it.
  • Re: I think I am about to give up on MVC based on how hard it is to do something very simple...

    Bradwills -- is this data annotation code something that should be placed in every MVC project now?
    Posted to ASP.NET MVC (Forum) by JoeReynolds on 4/7/2009
  • Re: Paging with jquery or msajax

    Thanks Luis. I'm familiar with using update panels in web forms so perhaps your info may help. I'll be sure to let you know.
    Posted to ASP.NET MVC (Forum) by JoeReynolds on 3/7/2009
  • Re: Paging with jquery or msajax

    Thanks for the link. I know paging is supported in Grid. I have an MVC application with one form of paging already implemented. I am trying to work out how to do the paging via ajax/jquery.
    Posted to ASP.NET MVC (Forum) by JoeReynolds on 3/6/2009
  • Re: Paging using MVC

    [quote user="Tijn"]Check out the paging sample from http://blogs.taiga.nl/martijn/2008/08/27/paging-with-aspnet-mvc/ [/quote] Tijn, I'm using the paging example you reference above and it works fine. I'm kinda stuck at how I can make this pager implement ajax paging. Do you have any reference samples on that?
    Posted to ASP.NET MVC (Forum) by JoeReynolds on 3/6/2009
  • Paging with jquery or msajax

    I am converting a legacy program to MVC. Some of the primary functionality involves paging through database tables. Have this working fine. However, I want to use ajax paging but cannot find any examples in asp.net on how to do this. Are there any examples of this available?
    Posted to ASP.NET MVC (Forum) by JoeReynolds on 3/6/2009
  • Linq to Entities Problem

    My solution compiles but on running a page I receive the following error: The entity or complex type 'ForumsModel.TblArticles1' cannot be constructed in a LINQ to Entities query. The code causing the problem is below. public IEnumerable<TblArticles1> ListArticles() { var articles = from a in _entities.TblArticles1Set where a.Forum == "Crafts" select new TblArticles1 { ArticleName = a.ArticleName, ArticleCategory = a.ArticleCategory }; return articles.ToList<TblArticles1>
  • Re: MVC Subsonic

    Thanks Paul. It is linq2sql. I was thinking the execution was a piece at a time.
    Posted to ASP.NET MVC (Forum) by JoeReynolds on 2/19/2009
  • Re: Get Route Parameter Value in Controller

    Luis, am I sure it is a good base controller? Well... being new to all this I cannot say with certainity. The code certainly appears to work and do what I wanted.. All the variables returned via the forumsx function are available in my master page and every content page regardless of the controller called after the basecontroller.
    Posted to ASP.NET MVC (Forum) by JoeReynolds on 2/19/2009
  • Re: MVC Subsonic

    Hetre's the Sonic code to retrieve a single item: public ActionResult Show(int id) { var item = _ImagesService.GetImages(id); return View(item); } Here's the code to grab it from ImagesService: public Images GetImages(int id) { return (from items in _ImagesRepository.GetImages() where items.ArticleCode==id select items).SingleOrDefault(); } Here's the GetImages from repository: IQueryable<Images> GetImages(); I am brand new to mvc and c#, but the appearance is that GetImages(id
    Posted to ASP.NET MVC (Forum) by JoeReynolds on 2/18/2009
Page 1 of 24 (237 items) 1 2 3 4 5 Next > ... Last »