Click here to Skip to main content
15,886,919 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionVideo hosting on asp.net MVC application Pin
User 41802549-Feb-18 11:29
User 41802549-Feb-18 11:29 
QuestionDashboard Build in .net with Bootstrap Pin
RekhaDhankhar9-Feb-18 6:13
RekhaDhankhar9-Feb-18 6:13 
AnswerRe: Dashboard Build in .net with Bootstrap Pin
User 41802549-Feb-18 12:33
User 41802549-Feb-18 12:33 
QuestionAspects Every ASP.Net Developers Must Know Pin
Priyanka Kale8-Feb-18 23:40
Priyanka Kale8-Feb-18 23:40 
AnswerRe: Aspects Every ASP.Net Developers Must Know Pin
User 418025411-Feb-18 3:28
User 418025411-Feb-18 3:28 
GeneralRe: Aspects Every ASP.Net Developers Must Know Pin
Priyanka Kale14-Mar-18 20:00
Priyanka Kale14-Mar-18 20:00 
QuestionASP.Net MVC application is saying build failed but doesn't show me any error but warns "Found conflicts between different versions of the same dependent assembly" Pin
indian1438-Feb-18 13:24
indian1438-Feb-18 13:24 
QuestionShopping site based on sql data? Pin
JoeJack03308-Feb-18 10:01
JoeJack03308-Feb-18 10:01 
AnswerRe: Shopping site based on sql data? Pin
David Mujica9-Feb-18 3:53
David Mujica9-Feb-18 3:53 
QuestionEF: How to minimize search code Pin
Mou_kol8-Feb-18 1:53
Mou_kol8-Feb-18 1:53 
QuestionASP.NET Core to IIS Pin
Priyanka Kale7-Feb-18 23:25
Priyanka Kale7-Feb-18 23:25 
AnswerRe: ASP.NET Core to IIS Pin
User 41802549-Feb-18 12:35
User 41802549-Feb-18 12:35 
QuestionParsing JSON Pin
A_Griffin7-Feb-18 22:40
A_Griffin7-Feb-18 22:40 
AnswerRe: Parsing JSON Pin
F-ES Sitecore7-Feb-18 23:57
professionalF-ES Sitecore7-Feb-18 23:57 
GeneralRe: Parsing JSON Pin
A_Griffin8-Feb-18 0:08
A_Griffin8-Feb-18 0:08 
AnswerRe: Parsing JSON Pin
Richard Deeming8-Feb-18 1:01
mveRichard Deeming8-Feb-18 1:01 
QuestionEntityFramework: Can we minimize sorting code Pin
Mou_kol6-Feb-18 2:46
Mou_kol6-Feb-18 2:46 
AnswerRe: EntityFramework: Can we minimize sorting code Pin
Richard Deeming6-Feb-18 3:03
mveRichard Deeming6-Feb-18 3:03 
GeneralRe: EntityFramework: Can we minimize sorting code Pin
Mou_kol7-Feb-18 20:40
Mou_kol7-Feb-18 20:40 
GeneralRe: EntityFramework: Can we minimize sorting code Pin
Richard Deeming8-Feb-18 1:39
mveRichard Deeming8-Feb-18 1:39 
GeneralRe: EntityFramework: Can we minimize sorting code Pin
Mou_kol8-Feb-18 1:52
Mou_kol8-Feb-18 1:52 
GeneralRe: EntityFramework: Can we minimize sorting code Pin
Richard Deeming8-Feb-18 1:58
mveRichard Deeming8-Feb-18 1:58 
QuestionAny free health monitoring dashboard exist Pin
Mou_kol5-Feb-18 22:00
Mou_kol5-Feb-18 22:00 
AnswerRe: Any free health monitoring dashboard exist Pin
Richard MacCutchan5-Feb-18 23:29
mveRichard MacCutchan5-Feb-18 23:29 
QuestionSending a collection of objects to the view in MVC Pin
Davstr5-Feb-18 4:42
Davstr5-Feb-18 4:42 
Hello, I am a Very New programmer in the MVC architecture and I am struggling with getting data from my controller to my view. I am in my last year of college and we are building a web application for a non profit organization that will track residents in their facility.

I am trying to query the database for the rooms table and select the rooms that have the IsOccupied field set to false.

Then I am filtering the returned query for a range of rooms and putting them in Wings and passing them to the view.

My struggles are with getting the room object from the controller to the view. Then in the view, burrowing down into the object and getting the room number out and displaying it.

Currently I have the following in my class.

public class Room
{

public int RoomID { get; set; }

[Display(Name = "Room Number")]
public int RoomNum { get; set; }

[Display(Name = "Is Occupied")]
public bool IsOccupied { get; set; }


}

My Controller code is:

public ActionResult Create()
{


//Query database for IsOccupied flag//
var AvailRoom = from s in db.Rooms
.Where(s => s.IsOccupied == false)
select s;

foreach (var room in AvailRoom)

{
if (room.RoomNum > 101 && room.RoomNum < 126)
{


IEnumerable<selectlistitem> EastSouth = new SelectList(room.RoomNum.ToString());

ViewBag.EastSouth = EastSouth;
}


}

My view code is:

@Html.Label("Available Rooms")




@Html.DropDownList("EastSouth")



Currently all I get when I compile is a dropdown box with 1, 2 and 5.

I am stumped. Any recommendations on where to go from here would be really appreciated.

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.