zoukankan      html  css  js  c++  java
  • 使用MVC框架中要注意的问题(四):ActionLink只是执行Get的操作

    ActionLink是产生一个链接字符串,它仅仅支持GET的Action
     
    <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<Web.Models.PhotoListItem>>" %>
    
    <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
        下载中心
    </asp:Content>
    <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
        <%if (Model != null)
          {%>
        <%
            using (Html.BeginForm())
            {
        %>
        <h2>
            下载列表</h2>
        通过付费购买某些照片,我们会为你打包下载。你可以在浏览图片的时候,将它们添加到下载框<br />
        <table>
            <tr>
                <th>
                    <input type="checkbox" id="ToggleSelect" />
                </th>
                <th>
                    标题
                </th>
                <th>
                    编号
                </th>
                <th>
                    操作
                </th>
            </tr>
            <% foreach (var item in Model)
               { %>
            <tr>
                <td>
                    <input type="checkbox" />
                </td>
                <td>
                    <%= Html.Encode(item.Title)%>
                </td>
                <td>
                    <%= Html.Encode(item.Path)%>
                </td>
                <td>
                    

    <%= Html.ActionLink("删除", "DeleteFromDownloadList", new { id = item.Path })%>

                </td>
            </tr>
            <% } %>
        </table>
        <input type="hidden" id="FileList" name="FileList" value="" />
        <br />
        <input type="submit" value="下载" id="download" />
        <%
            }
        %>
        <% 
            }
          else
          {
        %>
        对不起,你目前没有任何下载的列表
        <%
            }
            
        %>
    </asp:Content>
    <asp:Content ID="Content3" ContentPlaceHolderID="head" runat="server">
    
        <script src="../../js/private/DownloadPage.js" type="text/javascript"></script>
    
    </asp:Content>
    
     
     
     
    Controller中的代码
     
            /// <summary>
            /// 将某个照片从下载列表中移除
            /// </summary>
            /// <param name="id"></param>
            /// <returns></returns>
            //[AcceptVerbs(HttpVerbs.Post)]
            [Authorize]
            public ActionResult DeleteFromDownloadList(string id) {
                string profileKey = "DownloadList";
                ProfileBase profile = ProfileBase.Create(User.Identity.Name);
                Models.DownloadList list = profile.GetPropertyValue(profileKey) as Models.DownloadList;
                if (list != null && list.Items != null)
                {
                    list.Items.Remove(list.Items.FirstOrDefault(i => i.Path.Equals(id)));
                    profile.Save();
                }
    
                return RedirectToAction("Download");
    
            }
     
  • 相关阅读:
    GitLab 介绍
    git 标签
    git 分支
    git 仓库 撤销提交 git reset and 查看本地历史操作 git reflog
    git 仓库 回退功能 git checkout
    python 并发编程 多进程 练习题
    git 命令 查看历史提交 git log
    git 命令 git diff 查看 Git 区域文件的具体改动
    POJ 2608
    POJ 2610
  • 原文地址:https://www.cnblogs.com/chenxizhang/p/1634726.html
Copyright © 2011-2022 走看看