Is There A Django Or Rails For The .Net Platform

Jan 20, 2010

Now before I dive too far into this this question, I am aware of nDjango and MonoRail; however, those project seem to be lacking.What I'm wondering is if there is a solution out in the .Net world that has the following features out of a single box like Rails has in Ruby or Django has for Python. I know tools that do pieces but am curious if there's 1 unified solution out there.

Database Versioning/Migrations
ORM or similar code gen
MVC-based
Pre-generated administrative screens
View generation
Theming / styling
(I'm sure I'm forgetting another cornerstone feature)


There's lots of options that cover one or more of these aspects but is there something in .Net that covers all of them?

View 5 Replies


Similar Messages:

Is It Possible To Run Python And Django On IIS

Jan 21, 2010

Is it possible to run Python & Django on IIS? I am going to be a Lead Developer in some web design company and right now they are using classic ASP and ASP.NET.

As far as I can see ASP.NET MVC is not mature. Should I recommend Python & Django stack? If it's not possible to run Python on IIS what do you think I should do?

Can I run IIS and Apache in parallel?

View 2 Replies

Python Django Versus MVC

May 21, 2010

break up the pros and cons of using python django vs asp.net mvc besides the maturity level of its framework. I have intermediate experience with JAVA. As of right now, i'm leaning towards python but i just wanted to make sure i am making the right choice.

I find myself limited with books available on asp.net web developments. I am aware that there is the storefront example on the official asp.net site. However, that tutorial was a little hard for me to follow. I've done a research around and was python could be my next available choice. There are more tutorials available online for python anyways.

View 1 Replies

What Is Django On IronPython.Net Status

Nov 18, 2010

I searched the web and stackoverflow, but unfortunately, have not found any definite answers on whether or not Django is properly supported in IronPython.Net.

At work, I have some tools I would to develop in Django and Python, but from what I have read, Django is not really supported in IronPython.Net.

View 1 Replies

Migrating C# Membership Users To Django Without Resetting Passwords?

Jan 27, 2011

I've got a system that was partially written by someone else and is a complete maintenance nightmare for such a small app. I've finally been given changes which justifies just rewriting the horrible mess so I am moving it to Django.

Before I take the plunge, I've been trying to move over the password hash and salt into the Django auth tables [sha1]$[salt]$[hash] but can't get it to hash properly (resetting passwords isn't really an option).

Here is what I've been able to find out so far:

ASP.NET stores the hash as base64 string and uses a base64 salt (before hash) I can obviously reverse the base64 hash to a byte array Django uses a hexdigest, I tried BitConverter.ToString but they hash differently

View 1 Replies

MVC Versus Ruby On Rails

Nov 30, 2010

If you were starting a new web development project would you use ASP.Net MVC 2 or Ruby on Rails?

I have recently invested some time in to learning Ruby on Rails because I wanted to learn a solid web development framework. Then I took a new job where I will be using ASP.Net MVC 2.

I know this question is very subjective, but I am planning to write some websites on my own, outside of work, and I would like to get some opinions from others.

View 4 Replies

What Is Faster MVC Or Ruby On Rails

Nov 16, 2010

I am investing some time in learning ASP.NET and more specifically ASP.NET MVC and I am curious how it stacks up to the competition. I really like what I am seeing so far with the framework, and I think the icing on the cake would be if it shows rock solid speed like I have seen with some ASP.NET form sites.

Has anyone done or seen fair comparisons or benchmarks? I would be interested to see how ASP.NET MVC stacks up against other solutions such as PHP MVC too.

View 2 Replies

C# - Equivalent To The Rails Auto_link Helper?

Feb 2, 2010

A fast function for scanning text for urls and turning them into html hyperlinks would be very nice... I'd write one but I feel like the odds of someone already having written one are high...

View 1 Replies

Is There An Equivalent To Ruby On Rails' Respond_to Format.xml, Etc In MVC

Jan 8, 2010

In Ruby on Rails you can write a simple controller action such as:

def index
@movies = Movies.find(:all)
respond_to do |format|
format.html #index.html.erb
format.xml { render :xml => @movies }
format.json { render :json => @movies }
end
end

For those unfamiliar with RoR, def index in this case would be the equivalent of public ActionResult Index() within an ASP.Net MVC Controller and would allow the following calls:

[URL] returns as an html page from the view index.html.erb (think index.aspx)[URL] returns the same data in xml format (@movies is the object containing the data all of the views use)[URL] returns a JSON string, useful when making javascript calls needing the same data/logic

An equivalent flow in ASP.Net MVC would (if possible) likely look something like this (if it could be less verbose, even better):

[code]....

View 3 Replies

Which Technology Is Best For A Facebook Application Ruby On Rails Or C#

May 13, 2010

My friend and I want to write a Facebook application. We've narrowed down the list of possible technologies to Ruby on Rails and C# with ASP. Here are the pros and cons we've thought of.

Cons:

ASP - proprietary tools like Visual Studio etc. cost (lots of) money. We both don't know ASP (although we're not bad at C#).

RoR - It's scripting so might be harder to maintain. My friend doesn't know RoR at all (but he's a fairly proficient programmer so will probably be able to pick it up quickly).

Pros:

ASP - Facebook has an official SDK for .NET.
RoR - I know RoR. It's open source, free and has fast development time.

What says the community? Is there something we haven't thought of?

View 2 Replies

C# - Comparing Framework To Cakephp, Zend , Ruby On Rails?

Mar 27, 2010

I am a PHP developer migrating to C# ASP.Net Framework. As of right now, I am experienced in using Php for developing sites and I use CakePhp and Zend framework as my RAD tools to produce better applications.

As I move over to ASP.NET, I have this view that C# ASP.Net framework itself is already a RAD tool and is equivalent to using Cakephp, Zend, or even Ruby on Rails. So I really shouldn't have no concerns trying to find a separate library for ASP.NET that will better applications. To me, in a sense the ASP.NET is already like a MVC cause it seperates the model from the view and the methods are almost like controllers.

View 1 Replies

Writing A Simple Webservice In C# And Calling It From Ruby On Rails

Mar 12, 2010

I need to create a simple webservice in C# but I'm not sure where to start (I've coded UI apps in C# before but all my web experience is in Ruby on Rails). Where do I start?

The only client for the webservice will be a Ruby on Rails app so there's no need for any HTML rendering. I was thinking of just returning a XML or YAML formatted string unless there's an easier way. I'm not too keen on SOAP but if it's easy/natural in C# & Ruby then I'd consider it (or anything else).

View 4 Replies

C# - How To Learn Ruby On Rails As A Complete Programming Beginner

May 8, 2010

I want to build a scalable dynamic Web Application. I have never programmed an Object Oriented language before. Or, let's just say I am completely new to programming, because the previous experiences aren't worth talking about.

I know I have a really big task ahead of me ^^ but I wanted to get into coding for the last 10 years and now that I'm finally doing it, I would like to know how to get there in the most efficient way.

Any good books/tutorials you could recommend?

View 4 Replies

Finding Good Ruby Tutorials On Rails Book For A Developer

Dec 3, 2010

I'm predominantly a .Net developer but am wanting to look into ruby on rails.

Has anyone else been in this situation? And can they recommend any good books/tutorials/general resources for someone wanting to cross over?

View 3 Replies

Does It Work On Linux Platform

Feb 2, 2010

does ASP.net(web development) works with Linux platform??

View 2 Replies

Web Platform Installer Says Already Installed But Not

Aug 21, 2010

Just trying to download it from [URL] for the first time. Web Platform Installer says regarding "Frameworks and Runtimes" (and also "Visual Studio Tools"), "All the recommended products from this group are already installed", even though they're not. Did have something called Visual Studio Runtime Redistributable installed which is just a handful of DLL's. I uninstalled it though - made no difference. Also removed entries from registry with "Visual Studio" in them, also made no difference.

View 1 Replies

MVC :: Installing With Web Platform Installer 3

Feb 7, 2011

I get the following error when i try to install asp.net mvc 3 using the Web Platform Installer 3.0: "This product did not install succesfully: Downloaded file failed signature verification and may have been tampered with" The other thing I've noticed is that inside the "Application DataMicrosoftWeb Platform InstallerinstallersMVC3..." folder, the Web Platform Installer creats a "AspNetMVC3Setup.exe" file that has a size an aprox file size of 200KB. Meanwhile, at the beginign of the instalation process the Web Platform Installer informs that it will download a 20MB file.

View 1 Replies

Is Framework Platform Independent

Feb 7, 2011

Is .NET framework platform independent? I need a well authentic and clear one answer

View 4 Replies

ASP.NET Asset Management Platform?

Apr 7, 2010

I want to develop an ASP.NET based solution to manage and digitatize a library of several thousand garments that my company has developed over the past 10 years. This platform should enable my designers to easily create a new style, upload different photos of the same garment, upload the spec, and record the different attributes as well as enable users to browse and search through the collection and retrieve the photos and specs. Before I start from scratch, I am hoping that someone here can point me to either a open source package or a commercial solution that I can extend and customize to achieve what I need.

View 1 Replies

Equivalent To Heroku For The .NET Platform?

Oct 24, 2010

I can't see a reason why we couldn't do the same thing Heroku does for an ASP.NET website.

View 3 Replies

Is Blogengine A Stable Blogging Platform

Apr 3, 2011

I implement many themes in Blogengine.net 2.0 for many users and have lots of problems with it then i need to thing first that are it is really stable.

when i use Be.net 2.0 pagination in the stable version wrongly coded they never update them even someone reported them many time. means no one care about bad thing populated in Be.net 2.0 when i learn them their is too much blog but not as much as wordpress no problem but if you have a question their is no one answer you or answer you got from community going too late. this is not like a wordpress community then you question and get response quickly.

the first and 2nd is small issue no problem i have from that but a big problem is that functionality in blogengine.net not working well as in wordpress and in some other cms have every functionality well designed. i found many issue i reported from other when i implement theme from them like.

3.1 if someone write a post who are in future date , in draft , or published then sometime they show addpost page instead of editpost page. this make sometime user feel dirty because you know what they thing when they write a big post and found that all their craft goes left

3.2 Be.net have less functionality then any average other CMS no problem if it's less the issue that sometime you not found what's going wrong whenever their is a issue in the code you write or refactor existing pattern in blogengine.net

SO i want to know are Blogengine.net 2.0 really have stable version or they make them only for showing that they have really same thing as other.

View 2 Replies

Detecting What Platform Code Is Running On In C#?

Dec 9, 2010

I have C# code I want to use in both a WinForms app and ASP.NET website. The database connection string differs for each though, so I want to be able to find out which platform it's running on and set the connection string appropriately. Is there an easy/recommended way to do this ?

View 3 Replies

Build To Survey Platform From Scratch Using Asp?

Aug 14, 2010

I am planning to build an ASP.NET survey platform, that would also provide a scripting interface. I was wondering if there is an existing framework or open source platform to give a jump start.

Also would a rule engine come in handy?...

View 1 Replies

Setup A WebTV Platform In IIS / Windows?

Feb 6, 2010

I want to create a WebTV site in ASP.NET. At the moment I am thinking of using Flowplayer, serving .flv files. Since it will work with pseudostreaming, IIS will serve various .flv files in a schedule.

Is there a platform/open source package to provide all the clip (and advertisement) scheduling to create the WebTV program? Or do I need to create my own scheduling interface (backend) that will store the .flv schedule in a database, and create e.g. an .aspx that will read the current time and decide which clip to serve?

View 1 Replies

How To Deploy Windows Application In Linux Platform

Jun 17, 2010

how to deploy vb.net windows apploication in linux platform? is there any procdure

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved