I would like to add a hyperlink to a custom web part which will take the users to a web page on a new window with the configuration settings for the web part. If I try and add a text property as below, it will have a textbox associated with it.
[WebBrowsable(true),
Category("News Options"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Click the link below to view configuration settings")]
public string WebPartSettingsPage
{
get;
set;
}
Is there a way to add something similar to a label control that would just display a link the users can can click?