href in a table cell

  • Thread starter Thread starter Rajni
  • Start date Start date
R

Rajni

Hi !

I have a server side table (System.Web.UI.WebControls.Table) and I want to
make the text of one of my cells as hyperlink. Does anybody know how to do
it?

Thanks,
Rajni
 
Hi,

Did you try to add an hyperlink control to it?
something in the like of:
table.Rows[ 0 ].Cells[ 0].Controls.Add( new HyperLink( .. ) );

Cheers,
 
Back
Top