0

我对 MVC 非常陌生,并且对 MVC 有新手的了解。
我正在创建一个 MVC 应用程序,其中有显示在特定时间发生的事件的页面。现在,当我从下拉列表中选择事件时,我会得到特定事件的详细信息。现在,连同该特定事件的描述,我需要获取人们为该特定事件输入的反馈。
这是我的观点:

<div><a href="<%:Url.Action("ManagementHome","Home")%>">Home </a>>> Events</div>
<br /> 
<%:Html.LabelFor(m => m.Event)%> 
<%:Html.DropDownListFor(m => m.Event.SelectedValue, Model.Event.GetSelectList(), new {    id = "EventDropDown"})%>
<br /><br /> 
<div id="result" style="color: Green; border: 1px null transparent; ">
<%Html.RenderPartial("~/Views/PartialViews/EventsPartial.ascx"); %>
</div> 
<%:Ajax.ActionLink("view", "viewFeedback", "Home", new AjaxOptions { UpdateTargetId = "comments" }, new {eventid=Model.Event.SelectedValue})%>

<div id="comments" style="color: Green; border: 1px null transparent;">
<%Html.RenderPartial("~/Views/PartialViews/FeedbackPartial.ascx"); %>
</div> 

谁能建议我如何在其 ActionLink 中传递该事件的 ID?提前致谢

4

3 回答 3

2

您可以在参数中Html.ActionLink使用 using传递值。routeValues

例如:

// VB
@Html.ActionLink("Link Text", "MyAction", New With {.eventId = 1})

// C#
@Html.ActionLink("Link Text", "MyAction", new {eventId = 1})

可能会产生链接:

http://localhost/MyAction?eventId=1
于 2013-05-20T06:33:18.080 回答
0

你必须为此使用ajax函数:

  $('youractionlinkid').click(function () {
          var id = $('#yourdropdownid').val();
         $.ajax({
             url: this.href,
             type: 'GET',
             data: { id:id },
             cache: false,
             success: function (result) {
                 //do some action here
             }
         });
         return false;
     });
于 2013-05-21T14:08:03.703 回答
0

Razor 也会以这种方式采用 AJAX:

<div class="editorholder">
  @Html.DropDownListFor(model => model.Display_ID, new SelectList(Model._listAllDisplayViewModel.ListAllDisplayInfo, "DisplayID", "DisplayName"), "Select.....", new { @class = "form-control", @id = "DisplayID", @onchange = "DisplayInfo();" })
</div>




<div class="editor-field">
  <div id="DisplayView">
    @Html.Partial("_DisplayView", Model._displayViewModel)
  </div>
 </div>




function DisplayInfo() {
    $("#DisplayView").load('@(Url.Action("_DisplayView", "Display", null, Request.Url.Scheme))?id=' + $("#DisplayID").val());
};
于 2016-01-03T12:32:09.973 回答