博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net引用用户控件
阅读量:5253 次
发布时间:2019-06-14

本文共 784 字,大约阅读时间需要 2 分钟。

页面上直接引用

<%@ Register TagPrefix="scott" TagName="header" Src="Controls/Header.ascx" %>

<%@ Register TagPrefix="scott" TagName="footer" Src="Controls/Footer.ascx" %>
<%@ Register TagPrefix="ControlVendor" Assembly="ControlVendor" %>
<html>
<body>
    
<form id="form1" runat="server">
        
<scott:header ID="MyHeader" runat="server" />
    </
form>
</body>
</html>

配置文件引用(全局)

<?xml version="1.0"?>

<configuration>
  
<system.web>
    
<pages>
      
<controls>
        
<add tagPrefix="scottgu" src="~/Controls/Header.ascx" tagName="header"/>
        <
add tagPrefix="scottgu" src="~/Controls/Footer.ascx" tagName="footer"/>
        <
add tagPrefix="ControlVendor" assembly="ControlVendorAssembly"/>
      </
controls>
    
</pages>
  
</system.web>
</configuration>
当用户控件在同一个文件目录下的时候不能用配置文件引用,应该用"页面上直接引用".

转载于:https://www.cnblogs.com/cmblogs/p/3394210.html

你可能感兴趣的文章
[SCSS] Loop Over Data with the SCSS @each Control Directive
查看>>
[Node.js] Use "prestart" in scripts
查看>>
[AngularJS] ngCloak
查看>>
spring boot 和 mybatis集成
查看>>
ids资源文件解释
查看>>
php __tostring 与 tostring
查看>>
如何用好cpan
查看>>
react面试题(一)
查看>>
WAMP学习日记之:Apache发布php网站
查看>>
多文件上传 插件推荐
查看>>
Redis-用思维导图二天搞定Redis用法。
查看>>
[noip模拟赛2017.7.15]
查看>>
ind2vec和vec2ind函数
查看>>
poj1511 Invitation Cards (前向星?)
查看>>
javamail发邮件无主题内容为源文件 乱码
查看>>
LoaderManager使用详解(四)---实例:AppListLoader
查看>>
阅读笔记02
查看>>
java安全编码标准
查看>>
Codeforces Beta Round #7
查看>>
ubuntu windows 双系统修改默认启动项
查看>>