Click here to Skip to main content
15,894,291 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: MVC Controller Question Pin
TheOnlyRealTodd22-Jul-16 16:57
professionalTheOnlyRealTodd22-Jul-16 16:57 
QuestionMVC Model Binding Pin
MadDashCoder19-Jul-16 6:31
MadDashCoder19-Jul-16 6:31 
AnswerRe: MVC Model Binding Pin
Richard Deeming19-Jul-16 8:01
mveRichard Deeming19-Jul-16 8:01 
GeneralRe: MVC Model Binding Pin
MadDashCoder19-Jul-16 19:47
MadDashCoder19-Jul-16 19:47 
AnswerRe: MVC Model Binding Pin
F-ES Sitecore20-Jul-16 0:01
professionalF-ES Sitecore20-Jul-16 0:01 
GeneralRe: MVC Model Binding Pin
MadDashCoder20-Jul-16 7:12
MadDashCoder20-Jul-16 7:12 
GeneralRe: MVC Model Binding Pin
F-ES Sitecore20-Jul-16 22:10
professionalF-ES Sitecore20-Jul-16 22:10 
AnswerRe: MVC Model Binding Pin
jkirkerx3-Aug-16 8:01
professionaljkirkerx3-Aug-16 8:01 
Well I'm late to the party here, but since I'm trying to fix my VS2015 SP3 problem here, and waiting for the VS2015 with SP3 to load, I'll throw in my 2 cents.

I found it best to create a
Dictionary<string, string> Categories { get; set; }
So if you have a model
public class model_items
{
  int ID { get; set; }
  string SKU { get; set; }
  int CategoryID { get; set; }

  Dictionary<string, string> select_Categories { get; set; }
}
This like FSSiteCore said, you use his example in the View
@Html.DropDownFor(m => m.CategoryID, new SelectList(@Model.selectCategory), "-- Select Category --")

To populate the model in the controller
model_items model = new model_items();
model = load_items(1);
model.selectCategories = load_Categories();

Then you write a function that loads a Dictionary of string string. You can write a function using EF to load the Category Key and value, and then package those as a Dictionary.

I have found this to be the best way to do it for me so far, being on my 3rd MVC project now.
Reason being is well the SelectList in Razor likes Dictionaries and takes them well with no problems.
QuestionMessage Closed Pin
18-Jul-16 14:50
MadDashCoder18-Jul-16 14:50 
AnswerRe: Switching From Textbox To Dropdownlistbox Pin
Richard Deeming19-Jul-16 2:04
mveRichard Deeming19-Jul-16 2:04 
Questionasp.net Pin
Member 1263882918-Jul-16 5:41
Member 1263882918-Jul-16 5:41 
QuestionRe: asp.net Pin
ZurdoDev18-Jul-16 5:58
professionalZurdoDev18-Jul-16 5:58 
AnswerRe: asp.net Pin
jkirkerx3-Aug-16 8:11
professionaljkirkerx3-Aug-16 8:11 
QuestionSetup for a web application Pin
Member 1027267614-Jul-16 3:11
professionalMember 1027267614-Jul-16 3:11 
AnswerRe: Setup for a web application Pin
koolprasad200314-Jul-16 18:30
professionalkoolprasad200314-Jul-16 18:30 
AnswerRe: Setup for a web application Pin
John C Rayan18-Jul-16 2:03
professionalJohn C Rayan18-Jul-16 2:03 
QuestionWhat's new in ASP.NET? Pin
Piya2713-Jul-16 19:08
Piya2713-Jul-16 19:08 
AnswerRe: What's new in ASP.NET? Pin
Richard MacCutchan13-Jul-16 21:52
mveRichard MacCutchan13-Jul-16 21:52 
AnswerRe: What's new in ASP.NET? Pin
ZurdoDev14-Jul-16 5:11
professionalZurdoDev14-Jul-16 5:11 
AnswerRe: What's new in ASP.NET? Pin
koolprasad200314-Jul-16 18:25
professionalkoolprasad200314-Jul-16 18:25 
AnswerRe: What's new in ASP.NET? Pin
John C Rayan18-Jul-16 2:05
professionalJohn C Rayan18-Jul-16 2:05 
AnswerRe: What's new in ASP.NET? Pin
petter201231-Aug-16 14:12
petter201231-Aug-16 14:12 
Questionwhat datasource control to use on a web from 2010 Pin
dcof12-Jul-16 11:58
dcof12-Jul-16 11:58 
AnswerRe: what datasource control to use on a web from 2010 Pin
petter201231-Aug-16 14:22
petter201231-Aug-16 14:22 
QuestionNeed help Regarding ADFS SSO implementation in Asp .net via SAML 2.0 Pin
Member 1263115512-Jul-16 4:09
Member 1263115512-Jul-16 4:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.