11

所以,这就是我们想要做的:我们想要一个通用的 Web 部件,其周围有一个自定义框架,然后在其中动态加载其他 Web 部件(无框架)。你认为这可能吗?有点像Jan Tielens SmartPart,只是不是用于 ASP.Net 用户控件,而是用于其他 Web 部件......;)

编辑:我们现在已经能够做到这一点。解决方案实际上非常简单。查看代码:

public class WebPartWrapper : System.Web.UI.WebControls.WebParts.WebPart {
    protected override void CreateChildControls() {    
        Panel pnl = new Panel();
        this.Controls.Add(pnl);
        WebPart dynamicPart = WebPartFactory.CreateWebPart("RSSViewer");
        pnl.Controls.Add(dynamicPart);
    }
}

就这么简单...我们还使用反射将 webparts 存储为 Xml 等,但这不是重点。

4

5 回答 5

4

我不这么认为。我前一阵子尝试过,它抱怨只能在 Page Init 中添加 WebPartZone 项目。我认为在初始化“容器”WebPart 时,添加更多区域为时已晚,因为已经初始化了保留页面。

于 2009-01-07T09:02:49.330 回答
4
public class WebPartWrapper : System.Web.UI.WebControls.WebParts.WebPart {
    protected override void CreateChildControls() {    
        Panel pnl = new Panel();
        this.Controls.Add(pnl);
        var factory = new WebPartFactory()
        WebPart dynamicPart = factory.CreateWebPart("RSSViewer", this.Guid);
        pnl.Controls.Add(dynamicPart);
    }
}

public class WebPartFactory {
    public WebPart CreateWebpart(string webpartName, Guid parentWebPartGuid)
    {
        var config = ConfigurationFactory.LoadConfiguration(webpartName);

        Assembly webPartAssembly = Assembly.Load(config.Assembly);
        Type webPartType = webPartAssembly.GetType(config.Class);
        object actualWebPart = Activator.CreateInstance(webPartType);

        foreach (var item in config.Properties)
        {
            PropertyInfo webPartProperty = webPartType.GetProperty(item.Name);
            object webPartPropertyValue = Convert.ChangeType(itemValue, Type.GetType(item.Type));
            if (!String.IsNullOrEmpty(item.Value))
                webPartProperty.SetValue(actualWebPart, webPartPropertyValue, null);
        }

        RunMethod("set_StorageKeyInternal", actualWebPart, new object[] { parentWebPartGuid });
        return actualWebPart as WebPart;
    }

    private void RunMethod(string methodName, object objectInstance, object[] methodParameters)
    {
        BindingFlags flags = BindingFlags.Instance | BindingFlags.Public |
            BindingFlags.NonPublic;

        Type t = objectInstance.GetType();
        MethodInfo m = GetMethod(t, methodName, flags);
        if (m != null)
        {
            m.Invoke(objectInstance, methodParameters);
        }
    }

    private MethodInfo GetMethod(Type instanceType, string methodName, BindingFlags flags)
    {
        MethodInfo m = instanceType.GetMethod(methodName, flags);
        if (m != null)
        {
            return m;
        }

        if (instanceType.GetType() == typeof(object) || instanceType.BaseType == null)
        {
            return null;
        }

        return GetMethod(instanceType.BaseType, methodName, flags);
    } 
}

这段代码需要一些解释......如果它不能编译,请原谅,我不得不删除相当多的原始代码,这是非常特定于实现的东西。我也没有展示“config”类,它只是一个用于配置 webpart 的容器,只是一堆属性。我想更详细地讨论两个问题:

  1. parentWebPartGuid - 这是托管 Web 部件的 Guid (UniqueId?)。出于某种原因,我们必须使用反射将“StorageKeyInternal”设置为这个值(它是一个私有属性)。您可以不设置它而侥幸逃脱,但至少对于大多数 Web 部件来说,我们必须设置它。

  2. config.Properties - 这是配置值(我们将它们设置在自定义的 .xml 文件中,但可以从任何地方随意获取)。它看起来有点像这样..

在我们的框架中,我们还支持动态属性值等内容,但那是另一天......希望这一切都有意义并且可以帮助某人。

于 2009-02-12T14:14:42.293 回答
2

有(至少)两种方法可以做到这一点:使用 iframe HTML 元素,或者只是一个内容由 JavaScript 更改的 div(可能使用 Ajax)。

[注意] 我的答案是通用的(即在网页设计方面),我不知道它在您的技术背景下如何,所以也许我应该删除这个答案......

于 2009-01-07T09:02:55.210 回答
2

没有机会获得 WebPartFactory 类的源代码吗?或者可能有更多关于它的信息?可能是伪代码?如果自定义 Web 部件在库中,它可以以与 RSSViewer 相同的方式引用它是否正确?我只是不确定如何去做你在这里所做的事情,我非常想更好地了解如何做到这一点。

谢谢!

于 2009-11-24T19:39:41.450 回答
0

当想要在另一个自定义 Web 部件中实例化自定义 Web 部件时,我在 .ascx 中使用以下代码

<%@ Register tagPrefix="uc1" Namespace="Megawork.Votorantim.Intranet.Webparts_Intranet.LikeButton" Assembly="Megawork.Votorantim.Intranet, Version=1.0.0.0, Culture=neutral, PublicKeyToken=769156d154035602"  %>

命名空间值和程序集值可以从 webconfig 中的 SafeControls 行或从包文件(在清单选项卡中)复制:)

当我想实例化它时(实际上)是在 .cs 中使用以下代码

//This is the namespace of the control that will be instantiated dinamically    
string type = "My.Custom.Namespace.WebpartToBeAdded.WebpartToBeAdded";

// Instantiate the control dinamically based on his type
System.Web.UI.WebControls.WebParts.WebPart genericWP = (System.Web.UI.WebControls.WebParts.WebPart)Activator.CreateInstance(Type.GetType(type));

// sets the page to the genericWP (i dont know if this is required)
genericWP.Page = this.Page;

// Note: if you want to call custom methods of the dinamically instantiated controls (like a custom load method) you will need to create an interface and make your dinamically instantiated webpart implement it. You will need to do it in that file that have the following code: private const string _ascxPath @"~/_CONTROLTEMPLATES/...". Then you can do the following
//IMyInterface ig = (IMyInterface)genericWP;
//ig.MyCustomLoadMethod(someParam);

// Adds the controls to a container, an asp panel by example.
panelDinamicControls.Controls.Add(genericWP);
于 2014-04-15T12:56:49.087 回答