本文介绍了如何在用户控件中使用GridView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨朋友们,
我想在用户控制中使用gridview
<%@ 控制 语言 = C# AutoEventWireup = true CodeBehind = WebUserControl1.ascx.cs Inherits = UserControlsDemo.WebUserControl1 %>
< asp:GridView ID = GridView1 runat = server > < / asp:GridView >
如果我执行WebForm1.aspx - >我想在GridView中显示Table1数据。
如果我执行WebForm2.aspx - >我想在GridView中显示Table2数据。
怎么可能?我在等你的回答。
提前致谢
Reddy
解决方案
Hi Friends,
I want to have a gridview in user control
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl1.ascx.cs" Inherits="UserControlsDemo.WebUserControl1" %> <asp:GridView ID="GridView1" runat="server"></asp:GridView>
If I execute WebForm1.aspx --> I want to display Table1 Data in GridView.
If I execute WebForm2.aspx --> I want to display Table2 Data in GridView.
How is it possible? I am waiting for your answer.
Thanks in advance
Reddy
解决方案
这篇关于如何在用户控件中使用GridView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!