Hi tayyab_mit, One method is you can write code in datagrid itemdatabound event handler. There you can create a hyperlink control and can set its text and link. Finally add the hyperlink control to the datagrid column. (this is c# code, make changes accordingly) if( e.Item.ItemType == ListItemType.Item e.Item.ItemType == ListItemType.AlternatingItem ) { HyperLink hlc = new HyperLink(); hlc.NavigateUrl = "http://www.codeproject.com"; hlc.Text = "codeproject"; //finally we add the created control to datagrid cell control collection e.Item.Cells[0].Controls.Add(hlc); } charmis
C
charmis
@charmis
Posts
-
Runtime hyperlink of datagrid -
.net certificationsHi neoms21 When you pass one exam you will get MCP credential. Next is MCAD(Microsoft Certified Application Developer) which requires 3 exams. Then MCSD(Microsoft Certified Solution Developer) which requires 5 exams. ie MCAD + 2 more exams. A good site is Microsoft's own site http://www.microsoft.com/learning/mcp/default.asp[^] Charmis