Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8547687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T13:19:10+00:00 2026-06-11T13:19:10+00:00

I have the following dropdownlist defined – @Html.DropDownListFor(x => x.SelectedValue, Model.myEntity, new { @id

  • 0

I have the following dropdownlist defined –

@Html.DropDownListFor(x => x.SelectedValue, Model.myEntity, new { @id = "ddList" })

with the following jquery –

<script type="text/javascript">
    $(document).ready(function () {        
        $("#ddList").change(function () {            
            var myid = $("#ddList").val();
            $.ajax({
                url: 'Controller/Action/',
                data: {
                    'id': myid
                },
                datatype: 'html',
                success: function (result) { success(result); }
            });
        });

    });


    function success(result) {        
        $("#partial").html(result);
    }
</script>

every time that I change the selection in the drop down, it enters the controller correctly the first time.
If I then select the same option a second time, my controller action is never entered.

Does anyone have any idea why my code doesn’t hit the controller for any subsequent drop down selection.

Thanks

EDIT –

Here is the contents of the div partial – it actually renders an mvc partial view –

<div id="partial" style="height:  90%">
        @Html.Partial("_Activities")    
</div>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T13:19:11+00:00Added an answer on June 11, 2026 at 1:19 pm

    Looks like a caching issue to me. Caching is true by default in JQuery Ajax for data type HTML, set it to false. try this:

     $.ajax({
                    url: 'Controller/Action/',
                    data: {
                        'id': myid
                    },
                    datatype: 'html',
                    cache: false,
                    success: function (result) { success(result); }
                });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following dropdownlist in mvc <%= Html.DropDownListFor(c => c.Address.Id, new SelectList(Model.Addresses, id,
I have the following code in a view: <div class=wrap_select> @Html.DropDownList(dateRange, new SelectList(Model.DateRange, Value,Text),
i have the following code in an asp.net mvc view. <% = Html.DropDownList(Filter, new
I have following code. <s:DropDownList dataProvider={_dataProvider}/> <fx:Script> private var _dataProvider:ArrayCollection = new ArrayCollection([{label:one, data:1},
I have the following code- View- <% Html.BeginForm(); %> <div> <%= Html.DropDownList(DropDownSelectList, new SelectList(
I have the following on my edit screen: <label for=campaign.CandidateID>Candidate:</label> <%= Html.DropDownList(Campaign.CandidateID, Model.Candidates, Choose...)%>
I have the following statement: <%: Html.DropDownList(dropCity, new[] { new SelectlistItem { Text =
I have following problem. In my view model I defined some list properties as
i have the following view that contains an @Html.DropDownList :- <fieldset> <legend>Answer here</legend> <div
I have following code in my MVC2 view: <tr class=edit style=display:none> <td> <%= Html.DropDownList(drpFields,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.