Salve scusate mi sono avvicinato da pochissimo ad asp, ho la necessità di dover aggiornare sul mio sito una pagina di solo testo, avrei voluto realizzare una pagina di accesso con username e password e una pagina in cui scrivere l'articolo da aggiornare con un clic, questi sotto sono i codici delle rispettive pagine, tenendo conto del fatto che non mi serve conservare i vecchi articoli ,che di conseguenza non mi serve un database e che la pagina di accesso con user & pass funziona, come mai quando finisco di scrivere l'articolo e premo il pulsante di aggiornamento non rieso a visualizzare la pagina aggiornata?
Grazie di cuore Matteo
______________CODICE MODULO.ASP_____________________
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Nuova pagina 1</title>
</head>
<%
username=Request.form("username")
password=Request.form("password")
%>
<%
if username="" then
response.write "INSERIRE LO USERNAME"
%>
<a href="accesso.htm"> TORNA INDIETRO </a>
<%
response.end
end if
if password="" then
response.write "INSERIRE LA PASSWORD"
%>
<a href="accesso.htm"> TORNA INDIETRO </a>
<%
response.end
end if
if username<>"a" then
response.write "USERNAME ERRATO"
%>
<a href="accesso.htm"> TORNA INDIETRO </a>
<%
response.end
end if
if password<>"b" then
response.write "PASSWORD ERRATA"
%>
<a href="accesso.htm"> TORNA INDIETRO </a>
<%
response.end
end if
%>
<body>
<form action="programma.asp" method="post" name="testo">
<textarea name="testo" rows="10" cols="30">
</textarea>
<p align="center"><input type="submit" value="Aggiorna" name="B1"><input type="reset" value="Reimposta" name="B2"></p>
</form>
</body>
</html>
__________CODICE PROGRAMMA.ASP_____________
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Nuova pagina 2</title>
</head>
<body>
<div align="center">
<center>
<table width="555" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<td width="555" height="390">
<tr>
<%
testo = Request.Form("testo")
%>
</td>
</tr>
</table>
</body>
</html>
<b></b><b></b>
Matteo