Click here to Skip to main content
15,891,033 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to submit a record and send as an email attachment at once? Pin
samflex27-Oct-16 8:12
samflex27-Oct-16 8:12 
GeneralRe: How to submit a record and send as an email attachment at once? Pin
jkirkerx27-Oct-16 11:36
professionaljkirkerx27-Oct-16 11:36 
GeneralRe: How to submit a record and send as an email attachment at once? Pin
samflex27-Oct-16 15:11
samflex27-Oct-16 15:11 
QuestionPOST xml request to an API with feedback asp.net mvc Pin
MacroSss21-Oct-16 0:11
MacroSss21-Oct-16 0:11 
AnswerRe: POST xml request to an API with feedback asp.net mvc Pin
jkirkerx24-Oct-16 9:15
professionaljkirkerx24-Oct-16 9:15 
AnswerRe: POST xml request to an API with feedback asp.net mvc Pin
MacroSss26-Oct-16 1:23
MacroSss26-Oct-16 1:23 
GeneralRe: POST xml request to an API with feedback asp.net mvc Pin
MacroSss26-Oct-16 1:24
MacroSss26-Oct-16 1:24 
QuestionThere is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key 'SelectedClientList'. Pin
amioni20-Oct-16 1:43
amioni20-Oct-16 1:43 
hi guys,

I have developed a MVC implementation 5, it works perfectly locally
but I published it on IIS and I have had this problem
//

in the controller I

C#
public ActionResult Index ()
         {
             CatalogModel m = new CatalogModel ();
             m.LocalCodeColumn = 1;
             m.PriceColumn = 2;
             m.SelectedClientList = m.GetClientSelectedItems ();
             return View (m);
         }



and in the view:

C#
Select Client: @ Html.DropDownListFor (m => m.SelectedClientList, Model.GetClientSelectedItems (), "--Select--", new {@id = "ddlClient"})

and this function :

C#
public IEnumerable<SelectListItem> GetClientSelectedItems()
        {
            // Function GetListClient() return IEnumerable<SelectListItem> 
            IEnumerable<SelectListItem> listClient = dataServices.GetClients();
            return listClient;
        }


modified 20-Oct-16 11:13am.

AnswerRe: There is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key 'SelectedClientList'. Pin
jkirkerx20-Oct-16 8:57
professionaljkirkerx20-Oct-16 8:57 
QuestionHow to save modal popup form into database/data table Pin
Bootzilla3319-Oct-16 10:47
Bootzilla3319-Oct-16 10:47 
AnswerRe: How to save modal popup form into database/data table Pin
Sahil Saini @ Software Developer19-Oct-16 19:23
professionalSahil Saini @ Software Developer19-Oct-16 19:23 
Questioni want fill 2 table with 1 click can I? Pin
moj197817-Oct-16 9:00
moj197817-Oct-16 9:00 
AnswerRe: i want fill 2 table with 1 click can I? Pin
Vincent Maverick Durano17-Oct-16 9:07
professionalVincent Maverick Durano17-Oct-16 9:07 
GeneralRe: i want fill 2 table with 1 click can I? Pin
moj197817-Oct-16 9:13
moj197817-Oct-16 9:13 
GeneralRe: i want fill 2 table with 1 click can I? Pin
Vincent Maverick Durano17-Oct-16 9:17
professionalVincent Maverick Durano17-Oct-16 9:17 
GeneralRe: i want fill 2 table with 1 click can I? Pin
moj197817-Oct-16 9:14
moj197817-Oct-16 9:14 
AnswerRe: i want fill 2 table with 1 click can I? Pin
Wendelius17-Oct-16 9:28
mentorWendelius17-Oct-16 9:28 
GeneralRe: i want fill 2 table with 1 click can I? Pin
moj197817-Oct-16 10:28
moj197817-Oct-16 10:28 
GeneralRe: i want fill 2 table with 1 click can I? Pin
Wendelius17-Oct-16 17:05
mentorWendelius17-Oct-16 17:05 
QuestionPosting back part of a model - instead of using querystrings for filters - MVC. part of the model post back Pin
jkirkerx17-Oct-16 8:38
professionaljkirkerx17-Oct-16 8:38 
AnswerRe: Posting back part of a model - instead of using querystrings for filters - MVC. part of the model post back Pin
jkirkerx17-Oct-16 10:21
professionaljkirkerx17-Oct-16 10:21 
QuestionTracking Pin
sarwajeet singh16-Oct-16 23:42
sarwajeet singh16-Oct-16 23:42 
AnswerRe: Tracking Pin
Eddy Vluggen17-Oct-16 1:50
professionalEddy Vluggen17-Oct-16 1:50 
QuestionRe: Tracking Pin
ZurdoDev17-Oct-16 8:17
professionalZurdoDev17-Oct-16 8:17 
QuestionAnyone know how to create or seen a toggle switch with two big word/many letter selections Pin
Bootzilla3316-Oct-16 15:15
Bootzilla3316-Oct-16 15:15 

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.