WebCustomControl1.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Web.UI;
  3. using System.Web.UI.WebControls;
  4. using System.ComponentModel;
  5. namespace PCSCustomWebControls
  6. {
  7. /// <summary>
  8. /// Summary description for WebCustomControl1.
  9. /// </summary>
  10. [DefaultProperty("Text"),
  11. ToolboxData("<{0}:WebCustomControl1 runat=server></{0}:WebCustomControl1>")]
  12. public class WebCustomControl1 : System.Web.UI.WebControls.WebControl
  13. {
  14. private string text;
  15. [Bindable(true),
  16. Category("Appearance"),
  17. DefaultValue("")]
  18. public string Text
  19. {
  20. get
  21. {
  22. return text;
  23. }
  24. set
  25. {
  26. text = value;
  27. }
  28. }
  29. /// <summary>
  30. /// Render this control to the output parameter specified.
  31. /// </summary>
  32. /// <param name="output"> The HTML writer to write out to </param>
  33. protected override void Render(HtmlTextWriter output)
  34. {
  35. output.Write(Text);
  36. }
  37. }
  38. }