首页 > 代码库 > 金坛外文网总结(一)
金坛外文网总结(一)
1.模板页 .master 引入模板页 MasterPageFile="~/MasterPage/Main.Master"
2.用户控件 .ascx
.ascx.cs:
/// <summary>
/// 信息分类Id
/// </summary>
public int CategoryId { set; get; }
.ascx CurCateId=<%=CategoryId %>
引入用户控件 <%@ Register Src="http://www.mamicode.com/~/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="http://www.mamicode.com/<%=ResolveUrl("~/@js/plugin/colorbox/jquery.colorbox-min.js") %>" type="text/javascript"></script>
<link href="http://www.mamicode.com/<%=ResolveUrl("~/@JS/Plugin/noty/themes/kingdon.css") %>" rel="stylesheet" />
</head>
如果是局部的可以在对应的页面上引用
.aspx <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<script src="http://www.mamicode.com/<%=ResolveUrl("~/@js/plugin/colorbox/jquery.colorbox-min.js") %>" type="text/javascript"></script>
<link href="http://www.mamicode.com/<%=ResolveUrl("~/@JS/Plugin/noty/themes/kingdon.css") %>" rel="stylesheet" />
</asp:content>
金坛外文网总结(一)