使用参数error -调用WebuserControl
本文关键字:调用 WebuserControl error 参数 | 更新日期: 2023-09-27 17:51:21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Web.Services;
using System.Text;
using System.IO;
using System.Reflection;
namespace e_compro
{
public partial class fetchrepeater : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
[WebMethod]
public static string Result(string controlName)
{
// return RenderControl(controlName);
Control toreturn = LoadControl(controlName, "hello");
return toreturn;
}
//public static string RenderControl(string controlName)
//{
// Page page = new Page();
// UserControl userControl = (UserControl)page.LoadControl(controlName);
// userControl.EnableViewState = false;
// HtmlForm form = new HtmlForm();
// form.Controls.Add(userControl);
// page.Controls.Add(form);
// StringWriter textWriter = new StringWriter();
// HttpContext.Current.Server.Execute(page, textWriter, false);
// return textWriter.ToString();
//}
public static UserControl LoadControl(string UserControlPath, params object[] constructorParameters)
{
List<Type> constParamTypes = new List<Type>();
foreach (object constParam in constructorParameters)
{
constParamTypes.Add(constParam.GetType());
}
UserControl ctl = Page.LoadControl(UserControlPath) as UserControl;
// Find the relevant constructor
ConstructorInfo constructor = ctl.GetType().BaseType.GetConstructor(constParamTypes.ToArray());
//And then call the relevant constructor
if (constructor == null)
{
throw new MemberAccessException("The requested constructor was not found on : " + ctl.GetType().BaseType.ToString());
}
else
{
constructor.Invoke(ctl, constructorParameters);
}
// Finally return the fully initialized UC
return ctl;
}
}
}
我已经将LoadControl方法从protected改为public static方法。我得到这个错误的第一个参数,这是Webuser控件。ascx文件的位置。
你给LoadControl的第一个参数是Type
,它的值controlName.GetType().BaseType
等于System.Object
(controlName
是string
, string
的基型是object
) ->错误类型'系统。对象'没有从'System.Web.UI '继承。控制',因为LoadControl
期望System.Web.UI.Control
类型。
你想实例化一个控件,给出它的名字&一些参数。不幸的是,LoadControl
没有接受这些参数的版本。幸运的是,实现这一点很简单。一个带有多个参数的Asp.net LoadControl的好例子.