So, I was able to deploy a very simple MVC site on Ubuntu, for nginx served by the kestrel. Fantastic.
Now I just wanted to do a simple thing, such as showing visitors an IP address, just for fun. You know, I want this to cause SQL / MySql to get the whole set of functions in Ubuntu.
But System.Web has been removed from aspnet50and broken, and you cannot just access System.Web.HttpContext...orReaquest.UserHostAddress()
I see @Request, but I do not have all the properties that I would expect.
How do I find ... or do I have to find which dependency to add that contains this function, or any other function that I can search from full .NET 4.5 MVC?
source
share