I have a string which has a hyperlink:
string msg = @"Welcome to <a href=\"http://google.com\">Google</a> ";
when I use this in a messagebox, the hyperlink does not show as a link. Is it possible to use a hyperlink in this way?
I have a string which has a hyperlink:
string msg = @"Welcome to <a href=\"http://google.com\">Google</a> ";
when I use this in a messagebox, the hyperlink does not show as a link. Is it possible to use a hyperlink in this way?
try removing the ampersand (@)
string msg = "Welcome to <a href=\"http://google.com\">Google</a> ";
I RECOMMEND creating your own dialog easily by creating a new form then dragging a LinkLabel into it, and you can change the LinkLabel properties to redirect you to whatever you want.