Click here to Skip to main content
15,893,588 members

Assigning Data for edit view

Member 8557048 asked:

Open original thread
Hi,

I am converting datatable data to a list and later i need to assign it to an edit view for binding dropdownlist

The following is the controller code


Here I am converting datatable data to list
var list = (from DataRow row in dt.Rows
select new tblLearner
{
txtFirstName = row["txtlrnName"].ToString(),
intLearnerID = Convert.ToInt32(row["txtlrnID"].ToString())
}).ToList();

This is for binding dropdownlist
var declrn = list.Select(c => new { c.intLearnerID, c.txtFirstName });
ViewBag.declrn = new SelectList(declrn.AsEnumerable(), "intLearnerID", "txtFirstName");


and I have called same "declrn" in the editview for binding dropdown

Learner @* @Html.DropDownList("intLearnerID", (IEnumerable<SelectListItem>)ViewBag.Learners, "--Select--", new { @class = "textBox", @style = "width:150px" })*@
@Html.DropDownList("intLearnerID", (IEnumerable<SelectListItem>)ViewBag.declrn, "--Select--", new { @class = "textBox", @style = "width:150px" })
@Html.ValidationMessageFor(model => model.intLearnerID)
But here the dropdown is not binding and the coming data is in encrpted mode where I have decrypted the data and getting into that list

Please provide proper solution for this problem.

Thanks in advance
Tags: MVC

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900