or

Protected Sub RadGrid1_ItemDataBound(ByVal sender As Object, ByVal e As GridItemEventArgs) Handles RadGrid1.ItemDataBound If TypeOf e.Item Is GridDataItem Then Dim item As GridDataItem = DirectCast(e.Item, GridDataItem) Dim id As String = item.GetDataKeyValue("CompanyID").ToString Dim CheckForWeb As Company CheckForWeb = Company.GetCompany(CInt(id)) ' see if the object is populated If CheckForWeb.CompanyID.HasValue Then ' check to see if there is a valid URL from the datafield WebsiteURL If CheckForWeb.WebsiteURL.Length > 10 Then item("CompanyWebsite").Text = "WEB" Else item("CompanyWebsite").Text = "" End If End If End If End SubProtected Sub RadGrid1_ItemDataBound(ByVal sender As Object, ByVal e As GridItemEventArgs) Handles RadGrid1.ItemDataBound If TypeOf e.Item Is GridDataItem Then Dim item As GridDataItem = DirectCast(e.Item, GridDataItem) Dim id As String = item.GetDataKeyValue("CompanyID").ToString Dim CheckForWeb As Company CheckForWeb = Company.GetCompany(CInt(id)) ' see if the object is populated If CheckForWeb.CompanyID.HasValue Then ' check to see if there is a valid URL from the datafield WebsiteURL If CheckForWeb.WebsiteURL.Length > 10 Then item("CompanyWebsite").Text = "WEB" Dim link As HyperLink = DirectCast(item("CompanyWebsite").Controls(0), HyperLink) link.NavigateUrl = CheckForWeb.WebsiteURL Else item("CompanyWebsite").Text = "" End If End If End If End Sub
I am new to telerik. I want rad grid to work as shown in screen shot. Please provide me solution…
<telerik:RadAsyncUpload ID="RadAsyncUpload1" runat="server" onfileuploaded="RadAsyncUpload1_FileUploaded" TargetFolder="~/App_Data"></telerik:RadAsyncUpload>protected void RadAsyncUpload1_FileUploaded(object sender, FileUploadedEventArgs e) { int i; // stop debugger here }