> 
> gibt es ein gutes asp tool- eine art interpreter, in dem man 
> direkt den code
> eingeben kann und sehen kann was rauskommt?
> 

�hem... Ja.
Der SuperDuper Claudius ASP Interpreter 2002:

-------------> interpreter.asp
<html><body>
<form action="interpreter.asp" method="post">
<textarea rows="10" cols="60"
name="code"><%=Server.htmlencode(Request("code"))%></textarea><br>
<input type="submit" value"execute!">
</form>
<table width="100%" border><tr><th>Ausgabe:</th></tr><tr><td>
<%
on error resume next
if Request("code")<>"" then execute Request("code")
if err.number<>0 then
        Response.Write "<div style=""color:red"">"
        Response.Write "ERROR:<br>"
        Response.Write "Soure: " & err.Source   
        Response.Write "<br>Number: " & err.number      
        Response.Write "<br>Description: " & err.Description
        Response.Write "</div>"
end if
%>
</td></tr></table>
<%
DictPrint Session, "Session Variables"
DictPrint Application, "Application Variables"
DictPrint Request.Cookies, "Cookies"
DictPrint Request.ServerVariables, "ServerVariables"
'DictPrint Request.Form, "Form Variables"
'DictPrint Request.QueryString, "Querystring Variables"
sub DictPrint(dict, title)
        Response.Write "<table border><tr><th colspan=2>" & title &
"</th></tr>"
        for each f in dict
                Response.Write "<tr><th>" & f & "</th><td>" & dict(f) &
"</td></tr>"
        next
        Response.Write "</table>"
end sub
%>
</body></html>
<-------------

Was anderes ist mir nicht bekannt....

Claudius


| [aspdecoffeehouse] als [email protected] subscribed
| http://www.aspgerman.com/archiv/aspdecoffeehouse/ = Listenarchiv
| Sie k�nnen sich unter folgender URL an- und abmelden:
| http://www.aspgerman.com/aspgerman/listen/anmelden/aspdecoffeehouse.asp

Antwort per Email an