• 金坛外文网总结(一)


    1.模板页 .master 引入模板页 MasterPageFile="~/MasterPage/Main.Master"

    2.用户控件 .ascx

            .ascx.cs:

                /// <summary>
                 /// 信息分类Id
                /// </summary>
                public int CategoryId { set; get; }

            .ascx  CurCateId=<%=CategoryId %>

            引入用户控件 <%@ Register Src="~/Control/Links.ascx" TagPrefix="uc1" TagName="Links" %>

            使用用户控件  <uc1:InfoList runat="server" ID="InfoList4" CategoryId="55" LinkUrl="~/InfoDetail.aspx" ContentType="Normal"                 DisplayCount="8" />

    3.引入js,css文件 如果是整体的可以直接在模板页验证添加

            .master   <head>

                    <script src="<%=ResolveUrl("~/@js/plugin/colorbox/jquery.colorbox-min.js") %>" type="text/javascript"></script>

                    <link href="<%=ResolveUrl("~/@JS/Plugin/noty/themes/kingdon.css") %>" rel="stylesheet" />

                  </head>

             如果是局部的可以在对应的页面上引用

            .aspx   <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">

                    <script src="<%=ResolveUrl("~/@js/plugin/colorbox/jquery.colorbox-min.js") %>" type="text/javascript"></script>

                    <link href="<%=ResolveUrl("~/@JS/Plugin/noty/themes/kingdon.css") %>" rel="stylesheet" />

                 </asp:content>

  • 相关阅读:
    深入理解DB2缓冲池(BufferPool)
    收银台采坑总结
    webpack4的总结
    无心法师-讲解
    cache 缓存的处理
    用es6方式的写的订阅发布的模式
    Skeleton Screen -- 骨架屏--应用
    promise实现原理
    业务线移动端适配方案总结
    vdom,diff,key 算法的了解
  • 原文地址:https://www.cnblogs.com/sunzgod/p/4179728.html
Copyright © 2020-2023  润新知