When I add attributes to hyperlink this way
hlink.Attributes.Add("onclick", "window.open('http://servers/preview.aspx?Name=" + srv + "','asd','status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=no,width=880px,height=525px,top=220px,left=100px,position=absolute');")
On form instead of standard blue underlined hyperlink (lnik.NavigateUrl = "http://servers/preview.aspx?Name=" + srv + "") I have text like label and on click new windows is loaded according to attributes.
Is there any chance to have these attributes in combination with hyperlink control?
Go to the complete details ...