用户自定义控件的使用?

1.我定义了二个用户自定义控件,且二个自定义控件中都有使用服务器控件,所以在源码中加入<form id="form1" runat="server"></form>,但当我在一个页面中需要同时使用这二个控件时,就会提示"异常详细信息: System.Web.HttpException: 一页只能有一个服务器端 Form 标记。"

2.如上1所说,但我不在自定义控件的源码中加入<form id="form1" runat="server"></form>,而仅仅在调用的页面中加入<form id="form1" runat="server"></form>,则页面能显示出来但是有错误.

请问各位高手,我除了在自定义控件中不使用服务器控件外,还有什么其它的解决办法?小弟先谢过各位大侠了.


拉风的咖菲猫
浏览 328回答 2
2回答

HUX布斯

在控件中加什么<form runat=...>你的页面结构可以这样:&nbsp;<form runat="server">  <uc1:usercontrol1 .../>&nbsp;&nbsp;&nbsp;&nbsp; <uc2:usercontrol2.../></form>另外记得要注册控件到页面上:如:<%@ Register Src="usercontrol1.ascx" TagName="usercontrol1"&nbsp;&nbsp;&nbsp; TagPrefix="uc1" %>&nbsp;就这样就可以了。
打开App,查看更多内容
随时随地看视频慕课网APP