System.Web.Compilation.TagAttributes.IsDataBound C# (CSharp) Method

IsDataBound() public method

public IsDataBound ( string att ) : bool
att string
return bool
		public bool IsDataBound (string att)
		{
			if (att == null || !got_hashed)
				return false;

			return (StrUtils.StartsWith (att, "<%#") && StrUtils.EndsWith (att, "%>"));
		}