Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-04-30 09:03:59 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-04-30 09:03:59 +0400
commita1ddbcdbe5651c21fc138183514575ea0d42de2e (patch)
tree81e3cce4540acdc1d332c3e2db8039f4d3640070 /mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlImage.cs
parenta0a0d602bc386ee772d50d4bdf12339f1533f277 (diff)
2003-04-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlImage.cs: * HtmlInputControl.cs: * HtmlSelect.cs: added control builder attribute. * HtmlSelectBuilder.cs: builder for HtmlSelect. * HtmlControlBuilder.cs: common builder for all HtmlControls. svn path=/trunk/mcs/; revision=14143
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlImage.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI.HtmlControls/HtmlImage.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlImage.cs b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlImage.cs
index 5cf3ce795d8..b08d6575d79 100755
--- a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlImage.cs
+++ b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlImage.cs
@@ -10,6 +10,7 @@ using System.Web.UI;
using System.Globalization;
namespace System.Web.UI.HtmlControls{
+ [ControlBuilder (typeof (HtmlControlBuilder))]
public class HtmlImage : HtmlControl{
public HtmlImage(): base("img"){}