Klaus: Emailadresse direkt aus Vorname und Nachname generieren, jedoch ohne Umlaute

Beitrag lesen

Hallo Stefan !

Ich konnte leider nichts genaueres damit anfangen. Ich hab dir den gesamten HTML-Code zum anschauen an deine Email-Adresse gesendet. Vielleicht kannst du mir weiterhelfen.

mfg

Klaus

Hier das ungefähre Scriptbeispiel:
e-mail: <A HREF="mailto:<%= rs("MAVorname") %>.<%= rs("MANachname") %>@fh-joanneum.at"><%= rs("MAVorname") %>.<%= rs("MANachname") %>@fh-joanneum.at</A></FONT></TD><TD WIDTH="50%" HEIGHT="92" VALIGN="top">

Hallo,

probiers mal hiermit:

<%
Private Function ConvertText(TextBlock)

Dim NewTextBlock
    NewTextBlock = TextBlock
    NewTextBlock = Replace(NewTextBlock, "Ä", "Ae")
    NewTextBlock = Replace(NewTextBlock, "ä", "ae")
    ...

ConvertText = NewTextBlock
End Function

...

%>
<A HREF="mailto:<%= ConvertText(rs("MAVorname")) %>.<%= ConvertText(rs("MANachname")) %>

Tschau, Stefan