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>

  • 相关阅读:
    进程和程序
    linux socket基本知识
    window核心编程 第五章 作业
    树的基本操作(C语言)
    每天都在反省自己,但是每天却都浑浑噩噩
    Windows核心编程 内核对象
    还没完整看过一本技术的书籍啊
    管道
    Memory Layout of a C Program(7.6)
    cpio命令用法
  • 原文地址:https://www.cnblogs.com/sunzgod/p/4179728.html
Copyright © 2011-2022 走看看