hyperlinkcolumn

C# Add HyperLinkColumn to GridView

Hi, I'm trying to add HyperLinkColumns dynamically to my GridView. I have the following code: HyperLinkColumn objHC = new HyperLinkColumn(); objHC.DataNavigateUrlField = "title"; objHC.DataTextField = "Link text"; objHC.DataNavigateUrlFormatString = "id, title"; objHC.DataTextFormatString = "{2}"; GridView1.Columns.Add(objHC); This...

Tilde not resolving in HyperLinkColumn in ASP.NET 2.0

I have an ASP.NET application originally deployed to a .Net 1.1 Framework on Windows 2000 server which i'm now using on a Windows 2008 Server using 2.0.50727. We use the tilde (~) to resolve to an absolute path in many areas of the application and it works for things like asp:hyperlink controls (with run-at server tags), but for our bou...

How to edit cell of type Linkcolumn in a gridview

I have a gridview control having 4 columns. one of the column is of type linkcolumn. user has to enters data for each column. How can we edit link column cell. if i click on this cell nothing happen.i set its readonly to false also. ...

How to edit cell of type Linkcolumn in a gridview

I have a gridview control having 4 columns. one of the column is of type linkcolumn. user has to enters data for each column. How can we edit link column cell. if i click on this cell nothing happen.i set its readonly to false also. ...