Bueno, más o menos lo he resuelto aunque he tenido que recurrir a JavaScript
:
Código:
If Not Session("NuevoDocumento") Is Nothing Then
mens("El nuevo documento está disponible en:<br>")
Dim hl As New HyperLink
hl.NavigateUrl = Session("NuevoDocumento")
hl.ID = "hlNuevo"
Me.pnlMensaje.Controls.Add(hl)
Session("NuevoDocumento") = Nothing
End If
Código PHP:
<script>
if(document.getElementById("hlNuevo"))
{
obj = document.getElementById("hlNuevo");
obj.innerText = obj.href;
}
</script>
Gracias y un saludo.