<Columns>
<asp:BoundField DataField="ContactUs_intended_for" HeaderText="Team" ReadOnly="True">
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="ContactUs_subject" HeaderText="Subject" ReadOnly="True" >
<ItemStyle HorizontalAlign="Left" />
</asp:BoundField>
<asp:HyperLinkField
DataNavigateUrlFields="ContactUs_intended_for"
DataNavigateUrlFormatString="Contact_Us_Details.aspx?Team={0}"
Text="Details..." >
</asp:HyperLinkField>
</Columns>
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY
ASKER
I think I can use the RowBound event to build the URL and combine the fields into a single string and pass thru it.
Bob