im new to the mono/C# game and im fiddling around with it. the problem im having is that everytime i change my aspx page i have to restart the entire apache server just to see the changes!! im doing a very simple page

Code:
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Hello World</title>
</head>
<body>
    <% 
		string original = "Hello World";
       
    %>

    <%=original%>
</body>
</html>
no matter what i change in the code (even just the HTML), when i reload the page i get the old page over again. i restart apache then my changes take effect. how can i force compile the page w/out having to restart the server everytime??