How can I run an ASP.NET application on Apache Web Server? - asp.net

I need to run an asp.net application on apache, can anyone suggest how this can be done?

Try this one ASp.net on Apache. Check around Mono.

Related

can i host asp.net web site in linux server?

How can i host asp.net website in linux server..
I am hosting asp.net website in linux server but it gives code error. You can see the screen short to better understand.
.
Although to avoid huge problems and configuration issues Windows server is used all over the world to host ASP.NET apps.
How ever you can explore Mono Project to use Linux to host ASP.NET Webapps.
Hope this helps.
You can host site in only two ways:
You use ASP.NET with Mono.
You use ASP.NET Core.
The second way is the most preferred but each of them are unstable and don't suitable for production. Use ASP.NET only with Windows Server with IIS.

Publish ASP.NET MVC4

After I finished an MVC4 Project i want to publish it on a local IIS Server.
Now I don't know how i have to publish my project and I also don't know how to use the IIS Server!
Can anyone explain this to me in simple words( Beginner!)
This is a nice tutorial for a beginner.
http://www.asp.net/web-forms/tutorials/deployment/deployment-to-a-hosting-provider/deployment-to-a-hosting-provider-deploying-to-iis-as-a-test-environment-5-of-12

asp.net to tomcat

Anyone has any example/tutorial links to deploy asp.net to tomcat (intranet) using mono? The guide they gave isn't clear on how it should be done.
Or are there any other ways to deploy asp.net to tomcat other than using mono?
Thanks in advance!
Anyone has any example/tutorial links to deploy asp.net to tomcat
(intranet) using mono?
Since Tomcat is mainly intended for running Java based technology you should probably look into things like Grasshopper although I haven't seen anyone using Tomcat to deploy ASP.NET applications so far.
Or are there any other ways to deploy asp.net to tomcat other than
using mono?
If your environment is unix based then your only way how to do that is using mono. I would however recommend you to use either apache with mod_mono or nginx with FastCGI since these are the most used combinations of running ASP.NET based web applications with mono.

how to deploy Visual Studio Development Server with web applications

i want to know how do i deploy ASP.NET web applications on client machines which runs with the visual studio development server rather than configure it in the IIS on the client machine?
I know its possible and telerik also uses this approach.
any help would be appreciated
thanks in advance
Deploy ASP.NET Application with WebServer

Can i host ASP.NET on an apache server?

I have heard of the pains of setting up IIS. On a windows box, can I simply drop a ASP.NET application into Apache server and have it work? Or are there any other server alternatives? I am relatively new to web server concepts. I have heard suggestions for the server in mono but it doesn't seem practical using mono on a windows box, I could use a Linux box with mono, which wouldn't surprise me if it worked better then a windows solution, but for arguments sake this question is directed towards a windows box.
Thanks
Try mod_aspdotnet.
mod_aspdotnet is a loadable Apache 2 module for serving ASP.NET content using the Microsoft's ASP.NET hosting and .NET runtime within the Apache HTTP Server process.
I believe there's a mod_mono you can use.
If you are windows user then you can go along with mod_aspdotnet
and if you are linux user then you can use mod_mono.

Resources