Host ASP.NET ( C# 3.0 ) on Mono
I have site implemented in ASP.NET ( c# 3.0). Can I host that on Mono ? If I can, do I need to change so开发者_StackOverflowmething in my code ( except communication with database) ?
Due to the Mono Compatibility page the latest stable version of Mono (version 2.8) has complete support to the ASP.NET 4.0 and ASP.NET MVC 2. There is some useful links to read about porting and establishing your site to Mono:
- Mono ASP.NET Section
- Mono ASP.NET FAQ
- Porting ASP.NET Applications
- Walkthrough: Porting Asp.Net MVC Website
Can I host that on Mono ?
You can host your application either on Apache with mod_mono or through FastCGI on web servers like nginx or lighttpd.
do I need to change something in my code
Only if some parts of your application use technologies/libraries which are not supported by mono.
精彩评论