Questions tagged [nerddinner]

an open source ASP.NET MVC project that allows Technology People to host their Lunches, Flashmobs, Dinners and informal get-togethers.

NerdDinner is an open source ASP.NET MVC project that allows Technology People to host their Lunches, Flashmobs, Dinners and informal get-togethers.

The source for the project is hosted at http://nerddinner.codeplex.com and contains branches that include use ASP.NET MVC versions 1, 2, & 3.

The live version of the site is available at http://www.nerddinner.com.

75 questions
0
votes
3 answers

NerdDinner exceptions and custom errors

In this tutorial in Details action Scott uses if (dinner == null) return View("NotFound"); else return View("Details", dinner); to return 404 Not Found message view. But in my downloaded source code for NerdDinner there are these lines: …
mare
  • 13,033
  • 24
  • 102
  • 191
0
votes
1 answer

NerdDinner ASP Tutorial - Linq-to-Sql does not create collection for OneToMany

I'm trying to follow the ASP.NET Nerd Dinner tutorial of Microsoft, but I'm having problems with the linq-to-sql part. I have the two databases Dinner and RSVP with primary keys and identity set to DinnerID and RsvpID. Then I created the relation…
user66875
  • 2,772
  • 3
  • 29
  • 55
0
votes
3 answers

Tests are not available in Visual Studio 2008?

I'm working through the Nerd Dinner ASP.NET MVC tutorial and am at the part right after I've created the project and am trying to run my unit tests for the first time. I see the test project and the AccountControllerTest.cs and…
Lee Warner
  • 2,543
  • 4
  • 30
  • 45
0
votes
1 answer

Parser error in mvc3 razor code

I'm getting this error in my cshtml file near this code @{ var options = new OpenIdSelector(); options.TextBox.LogOnText = "Log On"; } Parser Error Description: An error occurred during the parsing of a resource required to service…
gs11111
  • 649
  • 2
  • 17
  • 49
0
votes
1 answer

International version of NerdDinner

Hi I have been working with the International version of the : ASP.NET MVC 3 Internationalization - Part 2 (NerdDinner) at: http://afana.me/post/aspnet-mvc-internationalization-part-2.aspx Unfortunately this contains one major bug. The thing is I…
Mohammad S.
  • 429
  • 1
  • 6
  • 26
0
votes
1 answer

MVC 4 version of NerdDinner has binding issue when I create a dinner

If you goto http://nerddinner.codeplex.com/SourceControl/changeset/view/b1a032d1532b Get the MVC4 version. Run it. Host a dinner. Click Create I always get this error (screenshot) It is one of the main reference apps I want to use to help me learn…
punkouter
  • 5,170
  • 15
  • 71
  • 116
0
votes
1 answer

Nerddinner delete

I'm pretty new to MVC and I'm looking at the code of NerdDinner View: <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
Null Reference
  • 11,260
  • 40
  • 107
  • 184
0
votes
2 answers

Nerd Dinner returns 404s for all sub-pages

I just got a new Windows Server 2003 machine and I've been trying to get Nerd Dinner onto it. The server already has .NET 3.5 SP1, ASP .NET MVC, etc. When I upload Nerd Dinner via FTP to a subdirectory of the main webpage, I get a 404 when I go to…
Zian Choy
  • 2,846
  • 6
  • 33
  • 64
0
votes
1 answer

DotNetOpenAuth 4.0 and HTTPRequestInfo, NerdDinner 2.0

I'm using NerdDinner 2.0 as a base for learning DotNetOpenAuth. Great project BTW. I have it working using a DotNetOpenAuth DLL built on runtime version v2.0.50727 (came with the project). I would like to upgrade to a DotNetOpenAuth DLL built on…
0
votes
1 answer

Why my VS 2008 will be closed down when try to edit some ASPX file from Nerddinner Project

Why my VS 2008 will be closed down when try to open or edit the .ASPX files from Nerddinner Project? I'm using VS 2008 Professional SP1 version.
Daoming Yang
  • 1,325
  • 3
  • 20
  • 41
0
votes
1 answer

NerdDinner generic repository interfaces?

I am using NerdDinner (MVC 2) as the foundation of my project. While the repository interface design works very well, in my real world application there are a dozen of model classes (while NerdDinner has only one, Dinner), which means I need one…
dpant
  • 1,622
  • 19
  • 30
0
votes
1 answer

Does anyone use the generated entity classes on a large project?

In the NerdDinner example they use a repository pattern to decouple the business from the data layer. But then they use the Linq to SQL generated classes (Dinner specifically) as the entity class used throughout the project. So how decoupled is that…
Dan dot net
  • 6,119
  • 5
  • 28
  • 25
0
votes
2 answers

NerdDinner MVC and Html.Encode

In DinnerController I got a data. public ActionResult Details(int id) { Dinner dinner = dinnerRepository.GetDinner(id); if (dinner == null) return View("NotFound"); else return…
4b0
  • 21,981
  • 30
  • 95
  • 142
-3
votes
1 answer

How does nerdinner show map?

I want to show few countries marked with "pin" much like what the nerddinner has: http://nerddinner.com/ How can I achieve this functionality? Any details?
Jaggu
  • 6,298
  • 16
  • 58
  • 96
-3
votes
3 answers

Error trying to use a foreach loop with a sql database

I am recreating the website NerdDinner using MVC, ASP.NET. I have created a database containing the dinners, their dates, and other related information. On my index View, I am attempting to use a foreach loop to list all the dinners to the screen. I…
1 2 3 4
5