处理内容页面的用户控制中的 MasterPage 事件
在我的主页上,我有“搜索文本框”和“搜索按钮”。
在我的内容页面上,我有一个“用户控件”,其中有一个“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需添加将搜索参数传递到用户控件的逻辑。
在用户控件上,创建一个公共方法来绑定接受搜索文本的网格
然后,在母版页上,您应该有类似的内容
您只需要确保您的用户控件在 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
Then, on the MasterPage, you should have something like
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.
如果您知道如何处理内容页中的事件,则可以对控件应用相同的方法。它仍然是内容页将控件的处理程序连接到母版页的事件,因为内容页是知道并可以访问母版页和控件的实体。
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.