I want to add hyperlink which directs to another page as text to radconfirm. The code works fine if the hyperlink is removed but the confirm window never shows up if present.
Please find the code below:
strLink = "\conditions\terms.aspx"
strMsg += "are you Sure?"
strMsg += "<br/>"
strMsg += "<i>"
strMsg += "please check conditions"
strMsg += "<a href='" + strLink + "' target='_blank'>"
strMsg += "here" + "</a>"
strMsg += "</i>"
radWindowMngr.RadConfirm(strMsg, "Update", 330, 100, Nothing, "")