You could try something like below once your bind your gridview:
HyperLinkField hf = new HyperLinkField();
hf.DataTextField = "ProductID";
hf.NavigateUrl = "http://www.microsoft.com/";
hf.HeaderText = "Header Text";
hf.SortExpression = "ProductID";
grdView.Columns.Add(hf);
Regards
Mike
Don't expect too much, too soon.
|