Hi Volk
Well, it's my first time I post something in your Forum, and I hope
I don't gonna made some people cry. ^^
I already looked in the Internet if I could find any solution, but without sucsess. -_-
Well, my problem is, I get no error from the compiler, and since three day, sometime it works and sometime id do not. But three month long it worked without problem. No I ask me, are this a fault im my code or is it a Web sever error. It's not my Web Server, this one who work with Windows NT. with a ISS Version. (I don't know the version.)
Well, now to my Problem. I made a Form with ASP and used this code.
Example:
Over this, I have only normal HTML and the Language code.
<%@ LANGUAGE="VBSCRIPT" %>
<html>.......
<% Dim strMessage
strMessage=""
'Antragsteller
tx_FirstName= Trim(Request.Form("tx_FirstName"))
ect.
ect.
44 Line at all.
So I tuck every form name in this code.
Then I have some If, Else, End if request.
***************
If tx_FirstName = "" Then
Response.Write "<div align=center><font size=4>Bitte füllen Sie auch alles aus!</font><p>Wir benötigen alles was mit einem Stern --><font color=#FF0000> *</font> angeschrieben ist!

<p><a href=javascript
:history.back()>Zurück zum Formular</a></div>"
else
***************
Ok, new the Message for the E-Mail
strHtml = "<html><head></head><body bgcolor=ffffff>"
strHtml = strHtml & "<strong><u>Antragsteller:</u></strong> " & "<br>"
strHtml = strHtml & tx_berechtigung_vn3 & "<br>"
*****************************3
ect.
With the request from the Form. "tx_berechtigung”
Then I configured the code for sending to the Mail sever.
Then a If, Else, End if again.
*****************************
If Mailer.SendMail Then
SendMail = True
m_errortext = "Das eMail wurde erfolgreich ans Helpdesk TSS versendet."
Else
SendMail = False
m_errortext = Mailer.Response
****************************
Set Mailer = Nothing
If SendMail = True then
Response.Write "Bla bla bla"
else
end if
%>
****************************
If somebody wants to see the code, it would make my happy.
I didn't want to post all the code.
So did I something wrong, or is this ok, how I did it.