2

我有现有模块,其中我修改了一个包含一些 HTML 数据的用户控件。这在我的页面上显示得很好。

现在,我想执行按钮单击事件。我的代码如下。

User Control .ascx Page
<%@ Control Language="C#" Inherits="BrownBagMarketing.Modules.Maytronics.ViewMaytronics"
    AutoEventWireup="true" CodeBehind="ViewMaytronics.ascx.cs" %>

..... HTML Code....

<asp:LinkButton ID="lnkViewAll" Text="View All" runat="server" onclick="lnkViewAll_Click">
</asp:LinkButton>



---- User Control Code Behind .ascx.cs Page
namespace BrownBagMarketing.Modules.Maytronics
{
    public partial class ViewMaytronics : PortalModuleBase
    {
        protected void Page_Load(object sender, System.EventArgs e)
        {
            if (!IsPostBack)
            {
                //Response.Write("Test Event......");   
            }
        }
        protected void lnkViewAll_Click(object sender, System.EventArgs e)
        {

        }


    }
}

即使我在页面加载事件中显示 Response.write 是否正在执行,但它没有执行。当我删除链接按钮的 onclick 事件时,页面的其他 HTML 部分显示正常。

4

3 回答 3

1

现在我将使用以下代码。但没有得到我的确切答案。

任何人都可以解决这个问题,这样我就不会在页面后面的代码上编写代码。

<script runat="server">
   protected void Page_Load(object sender, System.EventArgs e)
{
    if (!IsPostBack)
    {
        dlFeatures.DataSource = ClsProduct.GetAllFeatures();
        dlFeatures.DataBind();
    }
    //Response.Write("abc123458");
}
</script>
于 2012-07-18T10:24:18.047 回答
0

你在修改什么模块?它是“wap”模块(Web 应用程序项目),意味着它被编译成 DLL 吗?如果是这样,您将需要在进行代码隐藏更改后重新编译。

于 2012-07-22T22:14:33.040 回答
0

确保您的 ascx 引用了您的代码隐藏文件 - 仔细检查名称。

ASCX 示例:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="QuizBackend.ascx.cs" Inherits="Bonitas.SalesRepQuiz.QuizBackend" %>

背后的代码

namespace Bonitas.SalesRepQuiz
{
   public partial class QuizBackend : PortalModuleBase
   {
        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            btnYourButton.Click += btnYourButton_Click;
        }

        protected void btnYourButton_Click(object sender, EventArgs e)
        {
            try
            {
                // Your code
            }
            catch (Exception ex)
            {
                Exceptions.ProcessModuleLoadException(this, ex);
            }
        }
    }
}
于 2015-05-15T10:44:22.910 回答