MasterPage 中有一个控件,控件 OnClick 作为 ASP.NET 中找不到的方法返回
我的母版页中有一个链接按钮:
<asp:LinkButton runat="server" OnClick="Transfer" Text="Transfer"></asp:LinkButton>
在我的代码后面
protected void Transfer(object sender, EventArgs e)
{
// Codez
}
说不存在这样的方法 Transfer 。
知道为什么或如何解决它吗?
MasterPage 没有 <%@ Blah %>;在第一行与我的其他页面不同,这可能是原因吗?我尝试放入一个并指定隐藏代码,但仍然不起作用。
I have a linkbutton in my masterpage:
<asp:LinkButton runat="server" OnClick="Transfer" Text="Transfer"></asp:LinkButton>
in my code behind
protected void Transfer(object sender, EventArgs e)
{
// Codez
}
Says that no such method Transfer exists.
Any idea why or how to fix it?
MasterPage has no <%@ Blah %> on the very first line unlike my other pages, could this be the cause? I tried putting one in and specifying the codebehind but still not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的母版页应该有一个 <%@ Master .... %>标签位于页面顶部。
Your master page should have an <%@ Master .... %> tag at the top of the page.