Search results for query: *

  1. suncoast-software

    Question Load Dropdown when another Dropdown isChanged

    I have nothing against javascript or ajax, I was only hoping to get this done without it. I will search the forum for your answer with the updatepanel , Sheepings. is the update panel available in MVC?
  2. suncoast-software

    Question Load Dropdown when another Dropdown isChanged

    thank you all for your answers. but I was hoping to get this done without using javascript of ajax(if that is even possible). the one answer I can up with is having a 3 step process..where the end user selects the year and make the clicks submit and is rerouted to a new page where they can...
  3. suncoast-software

    Question Load Dropdown when another Dropdown isChanged

    if I use the DropdownList how do I load all the makes from the database once the user selects the model?
  4. suncoast-software

    Question Load Dropdown when another Dropdown isChanged

    yes , sorry I meant "make"
  5. suncoast-software

    Question Load Dropdown when another Dropdown isChanged

    ok...here is the cshtml file code. @model List<Classic_Car_Leads.Models.Listing> @{ ViewData["Title"] = "Home Page"; } <section class="row mb-1" style="background-color:#524533;"> <div class="col-sm-12"> <h5>Ad Section</h5> </div> </section> <section style="border-radius...
  6. suncoast-software

    Question Load Dropdown when another Dropdown isChanged

    Ahhh yes...sorry about that..I should have tried to explain a bit further. so I am creating a website , I am using asp.net core mvc and the controls are select controls. this is the [HttpGet] //GET: Home public IActionResult Index() { using (var db = new...
  7. suncoast-software

    Question Load Dropdown when another Dropdown isChanged

    Hello! I have 3 dropdowns to do a search . year , make and model dropdowns. I need to load the model dropdown when the make dropdown isChanged.all data will be pulled from a MSSql database, can anyone point me to a resource that would help me figure out how to accomplish this? I have the...
  8. suncoast-software

    SQL Entity Framework Add to Database Question

    Ok cool...i will follow the link you posted and read up on it. thank you for your help.
  9. suncoast-software

    SQL Entity Framework Add to Database Question

    Hello Skydiver, this will be a weekly operation but only the first one will be that many objects...the rest will only be "new" items gathered.
  10. suncoast-software

    SQL Entity Framework Add to Database Question

    Hello, I am using c# and entity frarmework to save data to a database...there will be over 30,000 objects to be saved to the database.....my question is - is it better to save a single object over and over again 1 at a time or is it more efficient to save a List<Object> with .Range? thank you
Back
Top Bottom