<telerik:RadGrid ID="RadGrid1" runat="server" OnNeedDataSource="RadGrid1_NeedDataSource" Skin="Default"> <MasterTableView AutoGenerateColumns="true"> </MasterTableView> </telerik:RadGrid>Protected Sub RadGrid1_NeedDataSource(ByVal source As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Dim dt As DataTable If Session("dt") Is Nothing Then dt = New DataTable() dt.Columns.Add("money") For i As Integer = 1 To 10 dt.Rows.Add(i) Next Session("dt") = dt Else dt = TryCast(Session("dt"), DataTable) End If RadGrid1.DataSource = dt End SubHow do I format the money column to US currency or any of other formats available in radgrid? Thanks