从嵌入式资源加载模板

时间:2010-10-15 22:19:39

标签: c# asp.net embedded-resource itemplate

如何将嵌入资源作为ITemplate加载? LoadTemplate()方法只接受字符串虚拟路径,显然这对嵌入式资源不起作用。

2 个答案:

答案 0 :(得分:2)

假设您的模板是嵌入式的并且需要保持这种方式(我认为您可能需要重新考虑),这是我之前写的一个函数,我在处理嵌入式文件时成功使用了很多次(主要是.sql文件)。它将嵌入的资源转换为字符串。然后,您可能需要将模板写入磁盘。

public static string GetEmbeddedResourceText(string resourceName, Assembly resourceAssembly)
{
   using (Stream stream = resourceAssembly.GetManifestResourceStream(resourceName))
   {
      int streamLength = (int)stream.Length;
      byte[] data = new byte[streamLength];
      stream.Read(data, 0, streamLength);

      // lets remove the UTF8 file header if there is one:
      if ((data[0] == 0xEF) && (data[1] == 0xBB) && (data[2] == 0xBF))
      {
         byte[] scrubbedData = new byte[data.Length - 3];
         Array.Copy(data, 3, scrubbedData, 0, scrubbedData.Length);
         data = scrubbedData;
      }

      return System.Text.Encoding.UTF8.GetString(data);
   }
}

使用示例:

var text = GetEmbeddedResourceText("Namespace.ResourceFileName.txt",
                                   Assembly.GetExecutingAssembly());

答案 1 :(得分:0)

你的控制应该是这样的:

public class Con : Control
{
    public Template Content { get; set; }

    protected override void CreateChildControls()
    {
        base.CreateChildControls();

        Content = new Template();

        // load controls from file and add to this control
        Content.InstantiateIn(this);
    }

    public class Template : ITemplate
    {
        public void InstantiateIn(Control container)
        {
            // load controls
            container.Controls.Add((HttpContext.Current.Handler as Page).LoadControl("Emb.ascx"));
        }
    }
}

然后是嵌入文件:

<%@ Control Language="C#" %>

<asp:TextBox ID="Tb" runat="server" />

然后在使用控件时,它将加载嵌入式资源,因此使用:

<%@ Register Assembly="TestWeb" Namespace="TestWeb" TagPrefix="c" %>
<c:Con runat="server" />

将创建一个TextBox。


如果您尝试访问DLL中的文件see this implementation of VirtualPathProvider