如何使用这个用户控件?

时间:2009-08-19 18:16:35

标签: c# asp.net class user-controls

http://www.codeproject.com/KB/ajax/TunaUpdatepanel3.aspx

上面的链接包含扩展UpdatePanel用户控件的类。如何将其导入项目并将其用作用户控件,如下所示:

<uc:TunaUpdatePanel ... runat="server" />

更新#1:

将代码移动到ascx文件的建议解决方案不起作用。

以下是我为测试WebForm.aspx引用TunaUpdatePanelUC.ascx的解决方案而创建的两个文件。

TunaUpdatePanelUC.ascx

using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI;
using System.Text.RegularExpressions;
using System.IO;

    public class TunaUpdatePanelUC : UpdatePanel
    {
        private static readonly Regex REGEX_CLIENTSCRIPTS = new Regex(
        "<script\\s((?<aname>[-\\w]+)=[\"'](?<avalue>.*?)[\"']\\s?)*\\s*>(?<script>.*?)</script>",
        RegexOptions.Singleline | RegexOptions.IgnoreCase | RegexOptions.Compiled |
        RegexOptions.ExplicitCapture);
        private bool m_RegisterInlineClientScripts = true;

        /// <summary>
        /// If the updatepanel shall parse and append inline scripts, default true
        /// </summary>
        public bool RegisterInlineClientScripts
        {
            get
            {
                return this.m_RegisterInlineClientScripts;
            }
            set
            {
                this.m_RegisterInlineClientScripts = value;
            }
        }

        protected virtual string AppendInlineClientScripts(string htmlsource)
        {
            if (this.ContentTemplate != null && htmlsource.IndexOf(
                "<script", StringComparison.CurrentCultureIgnoreCase) > -1)
            {
                MatchCollection matches = REGEX_CLIENTSCRIPTS.Matches(htmlsource);
                if (matches.Count > 0)
                {
                    for (int i = 0; i < matches.Count; i++)
                    {
                        string script = matches[i].Groups["script"].Value;
                        string scriptID = script.GetHashCode().ToString();
                        string scriptSrc = "";

                        CaptureCollection aname = matches[i].Groups["aname"].Captures;
                        CaptureCollection avalue = matches[i].Groups["avalue"].Captures;
                        for (int u = 0; u < aname.Count; u++)
                        {
                            if (aname[u].Value.IndexOf("src",
                                StringComparison.CurrentCultureIgnoreCase) == 0)
                            {
                                scriptSrc = avalue[u].Value;
                                break;
                            }
                        }

                        if (scriptSrc.Length > 0)
                        {
                            ScriptManager.RegisterClientScriptInclude(this,
                                this.GetType(), scriptID, scriptSrc);
                        }
                        else
                        {
                            ScriptManager.RegisterClientScriptBlock(this, this.GetType(),
                                scriptID, script, true);
                        }

                        htmlsource = htmlsource.Replace(matches[i].Value, "");
                    }

                }
            }
            return htmlsource;
        }

        protected override void RenderChildren(HtmlTextWriter writer)
        {
            ScriptManager sm = ScriptManager.GetCurrent(Page);
            if (this.RegisterInlineClientScripts && sm != null && sm.IsInAsyncPostBack)
            {
                using (HtmlTextWriter htmlwriter = new HtmlTextWriter(new StringWriter()))
                {
                    base.RenderChildren(htmlwriter);

                    string html;
                    int outputSize;

                    //Get the actual rendering and size
                    html = htmlwriter.InnerWriter.ToString();
                    outputSize = html.Length;

                    //Append inlinescripts and fetch the new markup and size
                    html = this.AppendInlineClientScripts(html);
                    outputSize -= html.Length;

                    //Replace ContentSize if there are any gains
                    if (outputSize > 0)
                    {
                        html = this.SetOutputContentSize(html, outputSize);
                    }

                    writer.Write(html);
                }
            }
            else
            {
                base.RenderChildren(writer);
            }
        }

        private string SetOutputContentSize(string html, int difference)
        {
            string[] split = html.Split('|');
            int size = int.Parse(split[0]);
            split[0] = (size - difference).ToString();
            return string.Join("|", split);
        }
    }

WebForm.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm.aspx.cs" Inherits="WebApplication1.WebForm" %>
<%@ Register TagPrefix="uc" TagName="TunaUpdatePanel" Src="~/TunaUpdatePanelUC.ascx" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">

    <div>
        <uc:TunaUpdatePanel ID="Test1"  runat="server" />
    </div>
    </form>
</body>
</html>

错误消息:

分析器错误 说明:解析为此请求提供服务所需的资源时发生错误。请查看以下特定的解析错误详细信息并相应地修改源文件。

分析器错误消息:此处不允许使用'WebApplication1.TunaUpdateUC',因为它不扩展类'System.Web.UI.UserControl'。

来源错误:

第1行:&lt;%@ Control Language =“C#”AutoEventWireup =“true”CodeBehind =“TunaUpdatePanelUC.ascx.cs”Inherits =“WebApplication1.TunaUpdateUC”%&gt;

4 个答案:

答案 0 :(得分:3)

将源代码保存到项目中的文件中。然后通过在顶部添加一个寄存器指令将它注册到您想要使用的页面中,如下所示:

<%@ Register TagPrefix="uc" TagName="TunaUpdatePanel" Src="~/[path]"

其中path是您保存用户控件的文件的路径。

查看here以获取类似信息 - 只需忘记自己创建用户控件的部分。

编辑:愚蠢的我,我认为它实际上是用户控件的代码,基于问题的标题,而不是过于仔细地查看链接。

嗯,它不是用户控件,因为(如解析错误所示),它不会扩展System.Web.UI.UserControl。它扩展了UpdatePanel,这意味着您必须像使用UpdatePanel一样使用它(如网站所述)。通常用户控件有一半的foo.ascx(标记)和一个foo.ascx.cs(或.vb,如果你那样摆动)代码后半部分。但是,这只是代码隐藏。

查看如何使用服务器控件扩展程序herehere。我现在没有时间仔细研究它们,但我认为它们会让你朝着正确的方向前进。简短版本:看起来你需要将C#代码编译成一个程序集。

答案 1 :(得分:2)

假设你已经削减了&amp;将此代码粘贴到项目中的某个文件中(假设您已在Controls \ TunaUpdatePanel.ascx中找到它),您需要将此添加到您的web.config中,如下所示:

<pages>
   <controls>
      <add src="~/Controls/TunaUpdatePanel.ascx" tagPrefix="uc" tagName="TunaUpdatePanel"/>
   </controls>
</pages>

编辑:Matt Ball的回答也是正确的。按照他的方式进行操作,您将在使用该控件的任何页面的顶部添加该行。这样做,你基本上就是为整个应用注册它。您喜欢的选择。

答案 2 :(得分:0)

此控件旨在完全用作原始ASP.NET UpdatePanel,而不是用户控件。

将源代码粘贴到* .cs文件中。将文件添加到当前的ASP.NET项目中。将命名空间更改为您自己的命名空间,以避免修改web.config。

然后它应该在vs2005的工具栏中弹出,将其拖动到页面中,就像任何其他控件一样。

答案 3 :(得分:0)

我遇到了类似的问题(我试图将TextBox扩展为具有HTML5占位符属性)。

一旦我设置了ASCX文件(见下文),我跟着these instructions并将新控件拖到我添加的页面(其中ProjName是项目名称,NameSpace是包含控件的命名空间) :

<%@ Register assembly="ProjName" namespace="NameSpace" tagprefix="cc1" %>
<cc1:TextBox_Plus ID="TextBox_Plus1" runat="server" />

TextBox_Plus.ascx.vb     公共类TextBox_Plus         继承System.Web.UI.WebControls.TextBox

    Public Property PlaceHolder As String
        Get
            Return Attributes("placeholder")
        End Get
        Set(value As String)
            Attributes("placeholder") = value
        End Set
    End Property

End Class

或C#版本:
TextBox_Plus.ascx.cs

public class TextBox_Plus : System.Web.UI.WebControls.TextBox
{
    public string PlaceHolder {
        get { return Attributes["placeholder"]; }
        set { Attributes["placeholder"] = value; }
    }
}