O sistema já rodava, o servidor é ASP e aceita BD Access. Já foi feito teste no provedor e está tudo ok. Ele lê o BD, mas não consegue gravar. Veja o script incluir_script.asp: <%@ Language=VBScript %> <% Option Explicit Response.Expires = -1500 Dim upl, caminho, nome_foto, nI Dim sFoto Set upl = Server.CreateObject("SoftArtisans.FileUp") upl.OverWriteFiles = True caminho = "/fotos" upl.Path = Server.MapPath(caminho) If (upl.IsEmpty = 0) and (trim(upl.form("manter_enviar")) <> "M") Then upl.Save If trim(upl.form("hdn_submit")) = "1" then If trim(upl.form("manter_enviar")) = "" or trim(upl.form("manter_enviar")) = "E" Then If (upl.IsEmpty = 0) Then nome_foto = upl.UserFileName For nI = Len(nome_foto) to 0 step -1 If Mid(nome_foto, nI - 1, 1) = "\" Then Exit For Next sFoto = Mid(nome_foto, nI, Len(nome_foto)) Else sFoto = "" End If Else sFoto = upl.Form("path_foto_server") End If End If Dim sRef, sNome, sCategoria, sDescr, sMedida, sPreco sRef = trim(ucase(upl.form("ref"))) sNome = trim(ucase(upl.form("nome"))) sCategoria = trim(ucase(upl.form("categoria"))) sDescr = trim(ucase(upl.form("descr"))) sMedida = trim(ucase(upl.form("medida"))) sPreco = trim(ucase(upl.form("preço"))) Dim strConn, sSQL, objRS, objConn set objConn = Server.CreateObject ("ADODB.Connection") strConn = "DSN=acasadascadeiras; Database=cadeiras" objConn.Open strConn sSQL = "insert into produto (ref, categoria, nome, descr, medidas, preço, " sSQL = sSQL & "foto) values (" sSQL = sSQL & "'" & sRef & "', " sSQL = sSQL & "'" & sCategoria & "', " sSQL = sSQL & "'" & sNome & "', " sSQL = sSQL & "'" & sDescr & "', " sSQL = sSQL & "'" & sMedida & "', " sSQL = sSQL & "'" & sPreco & "', " sSQL = sSQL & "'" & sFoto & "')" set objRS = objConn.Execute(sSQL) Set upl = Nothing response.redirect("admin.asp") response.end %> Não foi mudado nada neste arquivo Lehí