处理内容页面的用户控制中的 MasterPage 事件

发布于 2024-09-15 05:36:13 字数 280 浏览 5 评论 0原文

在我的主页上,我有“搜索文本框”和“搜索按钮”。

在我的内容页面上,我有一个“用户控件”,其中有一个“GridView”。它显示了有关供应商的一些数据。 另外,在此用户控件的页面加载上,我编写了代码来在 GridView 中显示所有供应商。

现在,当用户在“搜索文本框”中输入供应商编号并点击“搜索按钮”时,我想在我的用户控件中处理此事件。

如何做到这一点?

请帮我。提前致谢。

注意:我知道如何处理内容页面中的事件,但不确定如何在内容页面上放置的用户控件内处理它。

On my master page , I have "Search textbox" and "Search Button".

On My content page , I have a "User Control" which has a "GridView".It shows some data about Vendors.
Also, on this User Control's Page Load, i have code written to display all vendors in GridView.

Now, when user enters Vendor Number in "Search textbox" , and hits "Search Button" , i want to handle this event inside my User Control.

How to do this ?

Please help me. Thanks in advance.

Note : i know how to handle the event in content page but not sure how to handle it inside user control placed on content page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

丑丑阿 2024-09-22 05:36:13

您只需添加将搜索参数传递到用户控件的逻辑。

在用户控件上,创建一个公共方法来绑定接受搜索文本的网格

public void BindGrid{string searchText)
{
   //get datasource with the searchText used as a Where, or whatever suits your current situation
   //bind grid
}

然后,在母版页上,您应该有类似的内容

protected void btnSearch_Click(object sender, EventArgs e)
{
   UserControl1.BindGrid(tbSearchText.Text);
}

您只需要确保您的用户控件在 IsPostBack 的情况下不会在 PageLoad 事件上绑定数据是真的。否则,您将绑定数据两次。

You just need to add logic that passes in the Search Parameters to the User Control.

On the User Control, make a public method to Bind the grid that takes in the search text

public void BindGrid{string searchText)
{
   //get datasource with the searchText used as a Where, or whatever suits your current situation
   //bind grid
}

Then, on the MasterPage, you should have something like

protected void btnSearch_Click(object sender, EventArgs e)
{
   UserControl1.BindGrid(tbSearchText.Text);
}

You just need to make sure that your UserControl doesn't bind data on the PageLoad event if IsPostBack is true. Otherwise, you'll be binding data twice.

記柔刀 2024-09-22 05:36:13

如果您知道如何处理内容页中的事件,则可以对控件应用相同的方法。它仍然是内容页将控件的处理程序连接到母版页的事件,因为内容页是知道并可以访问母版页和控件的实体。

If you know how to handle the event in the content page, you can apply that same approach to the control. It will still be the content page that wires the control's handler to the master page's event, since the content page is the entity that knows and can access both the master page and control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文