hyperlink not displaying.. please see
hi all,
i placed a hyperlink in webform , and added that to a labelcontrol for dispaly
i want that hyperlink to navigate to another webform, based on a parameter("here Model Number")
now i am getting the text of hyperlink only, not the underline, which indicates, the control is a hyperlink
can anyone please see this and help me
thanks in advance
code
Dim hp As New HyperLink
Dim bc As New HyperLinkColumn
hp.Text = "ADD TO CART"
Label5.Controls.Add(hp)
bc.DataNavigateUrlField = " [Model Number]"
bc.DataNavigateUrlFormatString = "http://localhost/shoppingcart2appVB/webform3.aspx?id={0}"
|