mutilple parameters to be passed using Hyperlink column
-
hi all i have defined a hyperlink column as below ''''''''''''''' Dim col0 As New HyperLinkColumn col0.HeaderText = "Col0" col0.Text = "Col0" col0.DataNavigateUrlField = "Col0" col0.DataNavigateUrlFormatString = "mypage.aspx?col0='{0}'" col0.DataTextField = "col0" col0.ItemStyle.Width = Unit.Point(60) col0.SortExpression = "col0" my_grid.Columns.Add(col0) '''''''''''''''''' now my problem is that i want to pass 2 database paramters using the DataNavigateUrlField property.i saw one of the article on net is say to use DataNavigateUrlFields property of hyperlink column but such member is not definded for the hyperlink column my url should be col0.DataNavigateUrlFormatString = "mypage.aspx?col0='{0}',col1='{1}'" can anyone help me out... thanks in advance :-D
-
hi all i have defined a hyperlink column as below ''''''''''''''' Dim col0 As New HyperLinkColumn col0.HeaderText = "Col0" col0.Text = "Col0" col0.DataNavigateUrlField = "Col0" col0.DataNavigateUrlFormatString = "mypage.aspx?col0='{0}'" col0.DataTextField = "col0" col0.ItemStyle.Width = Unit.Point(60) col0.SortExpression = "col0" my_grid.Columns.Add(col0) '''''''''''''''''' now my problem is that i want to pass 2 database paramters using the DataNavigateUrlField property.i saw one of the article on net is say to use DataNavigateUrlFields property of hyperlink column but such member is not definded for the hyperlink column my url should be col0.DataNavigateUrlFormatString = "mypage.aspx?col0='{0}',col1='{1}'" can anyone help me out... thanks in advance :-D