ASP.NET in Linux ! - asp.net

Hi i know it sounds weird but is it possible to run ASP.NET code in LINUX any how?

Check out mono.
It is an open source cross platform implementation of the CLR.
http://www.mono-project.com/

Take a look at the Mono project.

Related

TideSDK application get all applications from OS

Is it possible to use tideSDK to check what applications are running in the Operative System?
Thank you
You'd have to write a native app that does that, which you can then call from within TideSDK. You might want to look into using MonoDevelop for that, since you could hit Windows and OSX with the same application.

Compiling ASP.NET

I'm compiling ASP.NET code for the first time ever and I'm stumped.
I downloaded MINGW-Get and just finished installing it. The client gave me the source code and I found a file called RSConfig.exe.
So I assumed that was the config file, ran it, and then tried "make" but got the error
No targets specified and no makefile found. Stop
Any idea what I'm supposed to do? I don't see anything that would resemble a makefile in the source code.
Thanks in advance!
Do yourself a favour and install Visual Studio Express:
http://www.microsoft.com/visualstudio/en-us/products/2010-editions/express
It makes development easier and fast
It sounds like you might want to get familiar with the background concepts around asp.net and it's defacto development environment Visual Studio (there are many versions of visual studio).
As Andrei recommends, using Visual Studio Express is a good free way of getting started. The version most suited for web development is Visual Web Developer Express.
Attempting to compile .net code from a toolset such as MinGW isn't a typical route for using asp.net, however I've not used MinGW before and not sure it's possible to compile .net code from it.... Although it is perfectly possible to compile .net code from the command line (using the .net framework sdk) , I certainly wouldn't recommend it if you are getting started.
I'm going to make a guess that it is an ASP.net web forms project, it being the most prolific asp.net project type at the moment.
This official asp.net site http://www.asp.net/web-forms will guide you through what web forms are and how to get the development environment setup. Having this sort of background will aid you in solving your particular situation.

Is it possible to setup a web server for asp and asp.net on linux?

I know it's MS's product,
but is it neccesary that it's hosted in windows environment?
More specificly,I need it to run in Fedora
Mono is what you are looking for. It contains the ASP.Net runtime and development environment for Linux (and others). You can't run classic ASP on it, but you most definitely can run ASP.Net. That's probably what it is best at.
[Edited to clarify that you can't run ASP on Linux with Mono]
Consider looking at Mono.

Executing PE files in ASP.Net on Linux without using Mono

Can anyone tell me is it possible to executing '.exe' or '.dll' file(s) to run Asp.net on Linux server?
I know its possible with the use of Mono project.
But is it possible with the use of Mono Project?
Thanks in advance.
Mhh... NOT(really)
You can't execute natively exes on Linux only with Wine. I don't know if is gonna work running an asp.net server (IIS) on Linux with Wine.
Maybe you should get a try.
BTW: why not use Mono? Is it very good now. It has evolved much

ASP.NET on a linux webserver

Can I host a asp.net application on a linux based webserver?
Do they allow .net framework to be installed on linux?
Mono might work for you. It's an open source implementation of .NET that runs on Linux. It requires installation.
You can test your ASP.NET application with MOMA (Mono Migration Analyzer) first to see if it will work.
Take a look a Mono, specifically and it's ASP.NET implementation.
Check out the mono project:
http://mono-project.com/Main_Page
It's not 1:1 to the .net framework, but it's as good as you're going to get on linux in terms of .net.
Although there is Mono project - an implementation of .NET framework for Linux OS, I'd suggest you to use Windows server to host your web applications, since Mono doesn't provide all .NET functionality.
Yes that is possible, if you have a VPS/VPC server.
In shared hosting server you coudl go for Windows/Plesk, as they have pre-installed ASP.net.
In shared hosting Linux, you may not get root access to install ASP.net, please confirm over the specification from your hosting provider.
If you have a Linux server make sure that you " root access " to install the progamming language.

Resources