i have a hyperlink with this properties:
Text='<%# DataBinder.Eval(Container, "DataItem.RequestID") %>'
NavigateUrl= 'Admin.aspx?RequestId='
but in the NavigateUrl i would like to have something like:
NavigateUrl= 'Admin.aspx?RequestId=123'
the hyperlink is a column in a DataGrid.
so how can i concatenate the value of the text to the Navigate to URL ?
Text='<%# DataBinder.Eval(Container, "DataItem.RequestID") %>'
NavigateUrl= 'Admin.aspx?RequestId='
but in the NavigateUrl i would like to have something like:
NavigateUrl= 'Admin.aspx?RequestId=123'
the hyperlink is a column in a DataGrid.
so how can i concatenate the value of the text to the Navigate to URL ?