Look in Scripts/NerdDinner.js for this block of code: //If we've found exactly one place, that's our address. //lat/long precision was getting lost here with toLocaleString, changed to toString if (NerdDinner._points.length === 1) { $("#Latitude").val(NerdDinner._points[0].Latitude.toString()); $("#Longitude").val(NerdDinner._po […]
The Html.DropDownList() method accepts an optionLabel string parameter, the text of which is inserted at the top of the dropdown list (with an empty value). It doesn't necessarily have anything to do with which item of the list is selected. You could create a SelectList using your MyList and specify a selected value (http://msdn.microsoft.com/en-us/libr […]