2

这是我的第一个 SO 帖子,所以请原谅任何失礼。我觉得好像我已经尝试了与此错误相关的每个帖子的所有内容(禁用视图状态、noCache 等),但我束手无策。

我有一个带有一个母版页、一个页面和一个控件的空白项目。

页面 (aspx) 使用母版页加载。这工作正常。页面上有一个按钮,可将控件(ascx)加载到名为 divRightMainView 的部分中的 aspx 上。这也可以正常工作(这是我的问题似乎与我发现的所有其他问题不同的地方......)。ascx 上有一个按钮,它应该调用 ascx 的代码隐藏 - 这是我得到“状态信息”错误的地方。

这是aspx:

    <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master"                   EnableEventValidation="false" AutoEventWireup="true" CodeBehind="Outer.aspx.cs"   Inherits="TestProject.Outer" %>
    <asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
    <script  type="text/javascript">
        function loadUserView(viewToLoad) {
            PageMethods.RenderControl(viewToLoad, onSuccess, onError);
        }

        function onSuccess(results) {
            alert(results);
            var command = results.split('##')[0];

            if (command == 'loadView') {
                var htmlToLoad = results.split('##')[1];
                $get('divRightMainContentView').innerHTML = htmlToLoad;
            }
        }

        function onError(error) {
            alert('error ' + error);
        }

    </script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <asp:ScriptManager ID="ScriptMgr" runat="server" EnablePageMethods="true">
    </asp:ScriptManager>
     <div id="leftSideContent">
         <input type='button' id="clickToLoadASCX" value="Click Me" onclick="loadUserView('/inner.ascx');"/>
         This is the "Outer.aspx" page which will hold the ascx after the button is clicked
     </div>
     <div id="divRightMainContentView">

     </div>
</asp:Content>

背后的 Aspx 代码(呈现 ascx)

 [WebMethod]
    public static string RenderControl(String controlName)
    {

        Page page = new Page();
        Control control = page.LoadControl(controlName);
        HtmlForm form = new HtmlForm();
        form.Controls.Add(control);
        page.Controls.Add(form);
        StringWriter writer = new StringWriter();
        HttpContext.Current.Server.Execute(page, writer, false);
        return "loadView##" + writer.ToString();
    }

这是名为 inner.ascx 的 ascx

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="inner.ascx.cs" Inherits="TestProject.inner" %>

<div>
    This is the inner text. When I click the button below I should proceed to inner.ascx.cs to the "PageBehindCall_Submit".
    <asp:Button ID="innerButton" runat="server" onclick="PageBehindCall_Submit" Text="Submit"/> 
</div>

最后,ascx 代码隐藏

protected void PageBehindCall_Submit(object sender, EventArgs e)
{
    string str = "This call does not work!";
}

我希望能够使用“PageBehindCall_Submit”来处理数据,从 ascx 获取输入等。让我知道是否有办法实现这一点,或者其他可能的解决方法?任何帮助,将不胜感激!

4

1 回答 1

0

为什么不在 ascx 的页面加载时加载 ascx 而是关闭可见性而不是手动呈现用户控件 html。这很奇怪,因为控件属于 ascx,所以它没有与 ascx 中的事件挂钩。但我认为您应该将它添加到 aspx 中,然后在需要时尝试打开可见性。

于 2013-01-26T17:52:33.977 回答