本文介绍了我在tab容器中使用gridview,但它向我显示错误“TabContainer不能具有'System.Web.UI.WebControls.GridView'类型的子节点”。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在tab容器中使用了gridview,但它显示了一个错误

I am using a gridview in tab container but it showing me an error that

"TabContainer cannot have children of type 'System.Web.UI.WebControls.GridView".







<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
    
       <asp:TabContainer ID="TabContainer1" runat="server">
       <asp:TabPanel>
       <HeaderTemplate>List Of Clients</HeaderTemplate>
       <contenttemplate>
           <asp:GridView ID="GridView1" runat="server">
           
       </contenttemplate>







以上是我的示例代码.plz帮助我。



代码块和来自的问题title




Above is my sample code.plz help me.

code blocks and question from title

推荐答案

这篇关于我在tab容器中使用gridview,但它向我显示错误“TabContainer不能具有'System.Web.UI.WebControls.GridView'类型的子节点”。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 03:09