我正在尝试通过WebMethod发送电子邮件以下是我通常在常规回发中使用的代码

[WebMethod]
public static void SendEmail(string name, string phone, string emailaddress, string interest, string comments)
{
    var control = LoadControl("~/Shared/Controls/EmailTemplate_PartnerWithUs.ascx");

    StringBuilder sb = new StringBuilder();
    StringWriter sw = new StringWriter(sb);
    Html32TextWriter htw = new Html32TextWriter(sw);

    control.RenderControl(htw);

    sb.Replace("%name%", name);
    sb.Replace("%phone%", phone);
    sb.Replace("%emailaddress%", emailaddress);
    sb.Replace("%interest%", interest);
    sb.Replace("%comments%", comments);
    EmailUtility.SendEmailMessage(SettingsManager.GetContactRecipientEmails(), "CoyleHomeBuyers.com Partner Form", sb.ToString());
}

我得到的错误是:
An object reference is required for the non-static field, method, or property 'System.Web.UI.TemplateControl.LoadControl(string)'

有没有办法在WebMethod中加载此控件?

最佳答案

UserControl uc= new UserControl();
Control control = uc.LoadControl("~/Shared/Controls/EmailTemplate_PartnerWithUs.ascx");

关于c# - C#-LoadControl,WebMethod中的用户控件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16096458/

10-12 06:42