Hello <% response.write("World!"); %> apache can parse the html only as the page only display "Hello" here is my mod_mono.conf whic..."/>

installed mono, xsp, mod_mono

Code:
<%@Page Language="C#"%>
<html>
<body>

Hello <% response.write("World!"); %>

</body>
</html>
apache can parse the html only
as the page only display "Hello"



here is my mod_mono.conf which is included in httpd.conf:
Code:
<IfModule !mod_mono.c>
LoadModule mono_module /usr/lib/apache/mod_mono.so

MonoRunXSP True 
MonoPath "/usr/local/mono" 
MonoAutoApplication enabled 
MonoExecutablePath "/usr/local/bin/mono" 
MonoServerPath "/usr/local/mono/lib/xsp/2.0/mod-mono-server2.exe"
#MonoUnixSocket /tmp/mod_mono_server
MonoApplications default "/:/home/host/public_html"
MonoDocumentRootDir "/home/host/public_html"
<Location /home/host/public_html>
AddHandler mono .aspx
</Location>
</IfModule>
any helps? thank you!

 

 

 

 

Top