Creating HTML for A Tag

  • Thread starter Thread starter Robin
  • Start date Start date
R

Robin

In ASP.Net is there some classes and methods which can be used to generate
HTML for an A tag?
 
will the
<asp:Hyperlink...>
control work for you? Otherwise just use an <asp:Label...> and build the
HREF tag yourself.
 
I need to create the HTML in the code behind page and output it as part of
an unbound datagrid.
 
Back
Top