zisopoulos
Technical User
Hi i have the code bellow and i need to redirect the on a new window Response.Write "<a href='" i have tried to ad at the end of the href the _blank command but i get an error can someone give me an example of the right syntax?
Regards Zisopoulos
------------------------------------------------
Response.Write "<table class='myTable' width='100%'><tr>"
Response.Write "<td class='tableline"& iLine & "'>" & vbCrLf
If oRs("PostDate") > sLastVisit Then
Response.Write "<span class='NewNews'>" & GetTranslation("LANG_NEWNEWS") & "</span>" & vbCRLF
End If
Response.Write "<a href='" & GLOBAL_SITE_FORUM_PATH & GLOBAL_SITE_FORUM_PAGE & "?forum=" & oRs("SectionForum") & "&section=" & oRs("PostSection") & "&post=" & oRs("PostParent") & "&page=last"
If oRs("PostID") <> oRs("PostParent") Then Response.Write "#" & oRs("PostID")
Response.Write "'>"
Response.Write CodeMessageEx(HTML2flat(oRs("PostMessage")), 46, false, oRs("PostSmileys").Value) & "</a>" & vbCrLf
Response.Write "</td></tr></table>" & vbCRLF
Regards Zisopoulos
------------------------------------------------
Response.Write "<table class='myTable' width='100%'><tr>"
Response.Write "<td class='tableline"& iLine & "'>" & vbCrLf
If oRs("PostDate") > sLastVisit Then
Response.Write "<span class='NewNews'>" & GetTranslation("LANG_NEWNEWS") & "</span>" & vbCRLF
End If
Response.Write "<a href='" & GLOBAL_SITE_FORUM_PATH & GLOBAL_SITE_FORUM_PAGE & "?forum=" & oRs("SectionForum") & "&section=" & oRs("PostSection") & "&post=" & oRs("PostParent") & "&page=last"
If oRs("PostID") <> oRs("PostParent") Then Response.Write "#" & oRs("PostID")
Response.Write "'>"
Response.Write CodeMessageEx(HTML2flat(oRs("PostMessage")), 46, false, oRs("PostSmileys").Value) & "</a>" & vbCrLf
Response.Write "</td></tr></table>" & vbCRLF