Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I work in a shop that has a number of very good C# developers who have been using ASP.NET WebForms and would like to move to a MVC framework. To make things more complicated, we would also like to be able to run this under mono.
So my question is, are there any good MVC frameworks for mono, that have been tried and tested in the real world or are we better with Windows Server and IIS?
I've used Castle Monorail in Mono 2.0, and haven't had any problems.
I'm pretty sure you can run django with ironpython under mono. I haven't ever tried it but maybe you should check it out.
Sorry if this was unhelpful as you mentioned C# which django is not...
Give a look to http://netfluid.org/ it's a new interesting .net web server and it works on mono
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I was tasked to create a new Website - to make it similar to Facebook. ( were talking without games) so a standart backend with CMS for media sites.
I am familiar with VS'12, asp.net MVC3 & 4 C# or Vb.net , html5 and other languages and feel fit to start this.
What i wanted to know is if there is any Template, Backends, Nuget Packages, Open Source Applications out there for Visual Studio so I don't have to recreate the wheel?
I have looked where i know to look so a great answer would be a Template, Backend, Nuget Package and where you found it. Or possibly another method of getting started that i didn't list / am not aware of
Please do not come back at me with any PHP templates, for i would not be interested in it.
Thanks in advance.
Take a look here: MonoX
Free ASP.NET Content Management and Social Networking Platform
MonoX comes with everything you need to build advanced social networks.
MonoX includes very powerful content management functionality.
Mono Software provides MonoX blogs, tutorials and support forums.
This is something I'd recommend.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to run my own application built in C# using .Net compact framework 3.5 on Garmin Navigation device. Is it possible?
Can I also communicate with the Garmin software from my own C# application?
Updated
Is there any other company that offer navigation devices in which we can install or run c# application?
Note that Garmin device's software running on Linux.
As Marc Gravell noted it could be possible technically to run CLI on it.
You also can communicate with their services via API:
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to build a sample app that uses web sockets in .Net 4.5. based on the example in here: http://blog.davidpadbury.com/2011/01/13/wcf-websockets-first-glance/
I have VS11 developer preview installed on Windows 7.
I could not figure out which namespace WebSocketsService belongs to.
It would be of great help if anyone can point me to a resource that has complete details to get websockets working in .net.
Thanks.
MK
Did you download and install the WCF WebSockets Prototype from HTML5 Labs?
The namespace is Microsoft.ServiceModel.WebSockets in the assembly Microsoft.ServiceModel.WebSockets.dll. Once you install the prototype library you should be able to find the assembly.
I spent all day looking for examples that actually worked. So, I decided to put a complete example of web sockets hosted from MVC4 in this blog post. It uses the easiest possible way, using the Microsoft.WebSockets NuGet package. It still requires Windows 8 as far as I know. :( Hopefully there will be a patch to make Windows 7 a suitable host.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm a C# (WinForms) developer and I'm now getting into MVC3. I want to start right away with the right tools. I keep asking myself why I started C# without ReSharper. I don't want to program without the proper tools anymore.
I've searched a lot on Google, but I've found no specific tool/productivity add-ons for MVC3. Are the any? Do you use any? Is there any use/need for a third party tool in MVC3?
Basically the only tools we use in our development is included in the MVC 3.0 installer. The Razor View Engine, other than that is nothing. I mean when you got MVC, you got what you need for productivity and maintainability. ReSharper you said? No thanks! :)
http://www.asp.net/mvc
http://go.microsoft.com/fwlink/?LinkID=215693
You may want to check out the MvcContrib project on CodePlex, especially the filters and action results.
If you want to get into DI/IoC (since MVC3 is friendly to that), check out some of my favorite tools -- Ninject or StructureMap.
If you are developing a CRUD application using MVC then MVC Scaffolding will help you a lot. You can customize the templates and then generate controllers and views very quickly.
perosnally I use:
T4MVC
MefContrib.MVC3
Moq
MvcRouteUnitTester
StronglyTypedViews
AttributeRouting
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for a decent free control, library, or tutorial that allow graphing on .NET CF... I'm currently using v2.0 but can probably upgrade to 3.5.
I will also want to be able to save the graph as an image.
Two years ago i did nearly the same search and found several one, but nothing really excited me. Here are my old result:
Mooseworks Trend Graph Control
MindFusion PocketChart
Steema TeeChart
QCChart2D CF Charting Tools
QCRTGraph CF - Real-Time Graphics Tools
Maybe one or all of them released new versions in the meantime with better performance, but better check it for yourself.
How much functionality do you actually need?
For a CF project I did in the past, we just used a few bitmaps as the background grid and drew the plots on there. It was pretty simple and low-tech, but I was surprised at how well it served us.