StrawPollControlBuilder.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
- using System;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.ComponentModel;
- using System.Collections;
- namespace PCSCustomWebControls
- {
- internal class StrawPollControlBuilder : ControlBuilder
- {
- public override Type GetChildControlType(string tagName,
- IDictionary attribs)
- {
- if (tagName.ToLower().EndsWith("candidate"))
- return typeof(Candidate);
- return null;
- }
- public override void AppendLiteralString(string s)
- {
- // Do nothing, to avoid embedded text being added to control
- }
- }
- }