para usar mensagens de validação, eu uso os "comportamentos" do dreanweaver e ele gera o scirpt, no caso de não perder as informações basta no arquivo que grava, quando você redirecinar para página de erro, colocar o código voltar que o IE volta sem limpar o form
***validar****
-->
</style>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_validateForm() { //v4.0
var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
if (val) { nm=val.name; if ((val=val.value)!="") {
if (test.indexOf('isEmail')!=-1) { p=val.indexOf(
'@');
if (p<1 || p==(val.length-1)) errors+='- '+nm+' inválido.';
} else if (test!='R') { num = parseFloat(val);
if (isNaN(val)) errors+='- '+nm+' deve conter somente números.';
if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
min=test.substring(8,p); max=test.substring(p+1);
if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.';
} } } else if (test.charAt(0) == 'R') errors += '- '+nm+' (preenchimento obrigatório).'; }
} if (errors) alert('Ocorreu(am) o(s) seguinte(s) erro(s):'+errors);
document.MM_returnValue = (errors == '');
}
//-->
</script>
***arquivo que insere dados***
<!--#include file="./Conexao_bd_adm.asp" -->
<%
Dim SQL5, rst5
if session ("Logado") <> "Adm" and session ("Logado") <> "Ger" and session ("Logado") <> "Tra" then
Response.Redirect("Login.asp")
elseif session ("Logado") = "Ger" then
SQL5 = "SELECT * FROM Usuarios_permissoes WHERE (((Usuarios_permissoes.Nivel)='" & session ("Logado") & "'));"
Set rst5 = server.createobject("adodb.recordset")
rst5.open SQL5, vgdb, 1, 1
if rst5.eof then
rst5.close
set rst5 = nothing
Response.Redirect("Permissao_erro.asp")
else
if rst5("Incluir categoria") = false then
rst5.close
set rst5 = nothing
Response.Redirect("Permissao_erro.asp")
end if
rst5.close
set rst5 = nothing
end if
elseif session ("Logado") = "Tra" then
SQL5 = "SELECT * FROM Usuarios_permissoes WHERE (((Usuarios_permissoes.Nivel)='" & session ("Logado") & "'));"
Set rst5 = server.createobject("adodb.recordset")
rst5.open SQL5, vgdb, 1, 1
if rst5.eof then
rst5.close
set rst5 = nothing
Response.Redirect("Permissao_erro.asp")
else
if rst5("Incluir categoria") = false then
rst5.close
set rst5 = nothing
Response.Redirect("Permissao_erro.asp")
end if
rst5.close
set rst5 = nothing
end if
end if
%>
<%
Dim Nome, SQL, rst
Nome = trim(Request("Nome"))
Nome = ucase(Nome)
if Nome <> "" then
SQL = "Select * From Categorias Where [Nome da categoria] = '"&Nome&"'"
Set rst = server.createobject("adodb.recordset")
rst.open SQL, vgdb, 2, 2
if rst.eof then
rst.addnew
rst("Nome da categoria") = Nome
rst.update
rst.close
set rst = nothing
Response.Redirect("Default.asp")
else
rst.close
set rst = nothing
Response.Redirect("Inserir_Categoria_Erro.asp?Categoria="&Nome)
end if
else
Response.Redirect("Inserir_Categoria_Erro.asp?Categoria="&Nome)
end if
%>
***arquivo de erro***
<a href="javascript:history.back()" class="LinkPadrao">Voltar</a>