up vote 0 down vote favorite
2
share [g+] share [fb]

I have a large SQL Server database and I want to automatically generate ASP.NET and AJAX code from the database.

Can I do it using any Free Tool (please tell free ones only)?

I also want that tool to generate C# code only. Any article/whitepaper on the tool is appreciated.

link|improve this question
Have you tried Google? – Mitch Wheat Jan 15 '09 at 13:53
What do you want the generated code to do? Like listing the SQL database contents? – Spoike Jan 15 '09 at 13:53
Are you trying to avoid programming all together? – ccook Jan 15 '09 at 14:02
Mitch - Itried google but it shows many tools Spoike - Iwant to create CRUD pages of the tables ccook - If possible yes. – ikfe Jan 15 '09 at 14:09
feedback

5 Answers

up vote 0 down vote accepted

Check this link:

Build ASP.NET/AJAX Application Without Hand-Coding

link|improve this answer
Ikfe - Yes I have used this tool but not fully. I downloaded tool for free and it gave me pages very fast. You can read article using link i given you earlier over here: dotnetcurry.com/ShowArticle.aspx?ID=246. Please read all posts and then ask questions. Other have also given good suggestion. You should also try dynamic website. As i told, search in google and you will get. – Viks Jan 15 '09 at 14:17
BTW, you were asking for free tools. Iron Speed Designer is not free... – Mitch Wheat Jan 15 '09 at 14:58
i.e. that's the tool in that 'article' – Mitch Wheat Jan 15 '09 at 14:58
But it says free edition and when i installed it did not ask for license! – ikfe Jan 15 '09 at 16:57
There is a free edition but it will "Generates single-database applications up to 30 pages and 15 tables" only. Pricing: ironspeed.com/products/Pricing.aspx – Mitch Wheat Jan 15 '09 at 23:27
show 1 more comment
feedback

Have you looked at Text Template Transformation Toolkit (T4)?

This post has a lot of information on it.

link|improve this answer
Does T4 come with ASP.NET templates? – Mitch Wheat Jan 15 '09 at 23:29
feedback

Have you looked at MyGeneration?

@Viks's suggestion of ASP.NET Dynamic Data is a good one, though you should check if it is ready for production releases:

http://weblogs.asp.net/scottgu/archive/2007/12/14/new-asp-net-dynamic-data-support.aspx

http://www.asp.net/dynamicdata/

http://www.codeplex.com/aspnet/Wiki/View.aspx?title=Dynamic%20Data&referringTitle=Home

link|improve this answer
feedback

You can also check out Dynamic DataWebSite..search in googl

link|improve this answer
feedback

I propose using classes from: System.CodeDom namespace, combined with: System.Web.Compilation.BuildProvider class. For a comprehensive tutorial please see: Microsoft .NET CodeDom Technology - Part 1 By Brian J. Korzeniowski

link|improve this answer
feedback

Your Answer

 
or
required, but never shown