How to add a HyperLink into a ListBox

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

Hi,
We can add some string to a ListBox like:

ListBox1.Items.Add("This is one");

How can I add a HyperLink into a ListBox?
 
What is the behavior you want ? You could use autopostback to be immediately
notified of the change and redirect based on the selected value. You could
also do this client side.

A listbox can't contain an hyperlink but you can of course do whatever you
want once a value is selected....
 
Back
Top