Re: How to Remove SPAN tag from the Web Custom contro ...
- From: Polykos
- Date: Tue, 17 Oct 2006 04:37:47 -0700
To remove Span Tag from your WebUserControl, use this :
public override void RenderBeginTag(HtmlTextWriter writer)
{
writer.Write("");
}
public override void RenderEndTag(HtmlTextWriter writer)
{
writer.Write("");
}
I Hope that can help you.
Polykos
.
- Prev by Date: Re: bind data to gridview using custom data class?
- Next by Date: Re: Filtering Parent table on child records
- Previous by thread: Re: how to quickly check for database connectivity quickly
- Next by thread: Problems connecting to Oracle 9i database with Oracle 10g Client and Win XP x64
- Index(es):
Relevant Pages
|