首页 > 其他 > 详细

金坛外文网总结(一)

时间:2014-12-23 12:10:16      阅读:222      评论:0      收藏:0      [点我收藏+]

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>

金坛外文网总结(一)

原文:http://www.cnblogs.com/sunzgod/p/4179728.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!