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>

  • 相关阅读:
    栈和队列的概念
    01-开始使用django(全、简)
    临时记录01
    centos删除乱码名称的文件
    《计算机网络》谢希仁(第7版) 第一章
    git提交到远程虚拟机
    安全篇:弱密码python检测工具
    正向代理、Nginx(反向代理、负载均衡、静态资源服务器)
    列表去重、去除满足一定条件的元素
    editplus的常用快捷键
  • 原文地址:https://www.cnblogs.com/sunzgod/p/4179728.html
Copyright © 2011-2022 走看看