Nachstehend der Code. Das Feld 11 war fr�her mal ein Zahlenfeld. Habe aber alle 
Eintr�ge in der DB angepasst und es in ein Textfeld umgewandelt.. habe effektiv keine 
Ahnung weshalb es nicht tut.....


' hier frage ich die einzelnen Radiobuttons ab
        f11 = Request("f11")

If Request.Form <> "" Then
        Errors = false

        ' Plausibilit�tspr�fungen
        If f11 = "" Then
                Errors = true
                Errorf11 = true
        End If
        If NOT Errors Then

                Set OBJdbConnection = Server.CreateObject("ADODB.Connection")
                OBJdbConnection.ConnectionTimeout = Application("U_ConnectionTimeout")
                OBJdbConnection.CommandTimeout = Application("U_CommandTimeout")
                OBJdbConnection.CursorLocation = Application("U_CursorLocation")
                OBJdbConnection.Open Application("U_ConnectionString"), 
Application("U_RuntimeUserName"), Application("U_RuntimePassword")


                Set resResultat = Server.CreateObject("ADODB.Recordset")
                resResultat.CursorType = adOpenKeyset
                resResultat.LockType = adLockOptimistic
                resResultat.Open "Ergebnis", OBJdbConnection, , , adCmdTable

                resResultat.AddNew

                If f11 <> "" Then resResultat("f11") = f11    '' hier reklamiert 
er......!!!!
        
                resResultat.Update

         
                Parameter = Parameter & "&F11=" & Server.URLEncode(F11)





| Oft Gefragtes: http://www.aspgerman.com/aspgerman/faq/
| [aspdebeginners] als [email protected] subscribed
| http://www.aspgerman.com/archiv/aspdebeginners/ = Listenarchiv
| Sie knnen sich unter folgender URL an- und abmelden:
| http://www.aspgerman.com/aspgerman/listen/anmelden/aspdebeginners.asp

Antwort per Email an