Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
protected
void
RadGrid2_ItemDataBound(
object
sender, Telerik.Web.UI.GridItemEventArgs e)
{
if
(e.Item
is
GridDataItem)
GridDataItem item = e.Item
as
GridDataItem;
TableCell tb = item[
"FirstName"
];
LinkButton lnk =
new
LinkButton();
lnk.ID =
"lnk"
;
lnk.Text =
"text"
lnk.Attributes[
"href"
] =
"http://www.google.com"
tb.Controls.Clear();
tb.Controls.Add(lnk);
}