Ciao a tutti!

ho un problema grossissimo, con il seguente codice carico tinymce in una pagina

codice:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<style type="text/css">
<!--
.a{
width:300px;
height:80px;
}
-->
</style>


<title>Untitled Page</title>
   
    <script type="text/javascript" src="jscripts/tiny_mce/tiny_mce_src.js"></script>
    <script type="text/javascript">
    tinyMCE.init({
        mode : "textareas",
        theme : "advanced",
        plugins : "fullpage",
        theme_advanced_button3_add : "fullpage"
    });
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></head>
<body>




  <textarea class="a"></textarea>
</p>



  <input type="submit" name="Submit" value="Salva modifiche">
</p>


</p>
</body>

</html>
ma però deve mostrare di default il testo contenuto in prova.txt (oppure prova.html) e con il tasto salva va a salvare sempre in prova.txt (oppure prova.html) le modifiche effettuate...

è possibile? come?

ringrazio in anticipo.

ira