zoukankan      html  css  js  c++  java
  • 金坛外文网总结(一)

    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>

  • 相关阅读:
    LeetCode--Sudoku Solver
    LeetCode--Merge Intervals
    LeetCode--Valid Number
    LeetCode--Max Points on a Line
    1.1
    智能指针原理与简单实现(转)
    C++内存管理(转)
    算法题--扔棋子
    LeetCode--Substring with Concatenation of All Words
    线性代数与MATALB1
  • 原文地址:https://www.cnblogs.com/sunzgod/p/4179728.html
Copyright © 2011-2022 走看看