Results 1 to 1 of 1
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 ...
- 02-21-2009 #1Just Joined!
- Join Date
- Mar 2008
- Posts
- 18
Mono - force compile with page reload???
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
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??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>


Reply With Quote