As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I know C# and I want to start with ASP.NET (I already know how to build websites, using PHP).
I need good resource for ASP.NET (MVC, the latest version).
I have found other qustions, seemiler to mine, but what I want is your recommendations.
The ASP.NET website is a good place to start:
http://www.asp.net/mvc/mvc4
I would recommend reading some documentation, follow some tutorials, and give it a shot.
If you run into any problems, you can always find answers / ask questions on here.
There's nothing better than looking at working code for a non-trivial project to learn something new. I'd highly recommend going through the MVC Music Store tutorial and type in every line by hand to help you remember. By the end you'll have a real good idea of what MVC is and why it's so cool.
Wrox's Beginning ASP.NET 4: in C# and VB is a great book to start with.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I need to develop asp.net web application using umbraco cms and iam a beginner to it too.As a part of it,iam looking for a learning resource which would help me learn to develop asp.net application using umbraco cms right from the scratch..
Thanks in advance!!!!
Have a look at:
Video Tutorial.
Building Your First Umbraco Site From Scratch
Few Links here:
http://our.umbraco.org/wiki/how-tos/umbraco-absolute-beginner-tutorial
This has a few links from it you may find helpful
http://umbracocms.blogspot.com/2010/08/guide-to-umbraco-cms-for-beginners.html
Some Video tutorials from Umbraco though for a small fee
http://umbraco.com/help-and-support/video-tutorials/
Once you have looked at the beginner tutorials your best option is going to be first identify the features your web application needs and then do google searches of 'How do i do xxxxxxxxx in umbraco' etc and work from there.
I find its much easier to learn something like this when you are working on a project and the things you are learning are relevant to you, rather than just following beginners tutorials
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
as I started to work with Ext.Net I recognized that there is no documentation at the moment, therefore I feel like it's really hard to develop something with that Framework.
So my question is, is Ext.Net as ASP.NET Framework useable? Good, bad, worse?
In terms of productive work, is the community version (no premium support) useable to code in a productive way or is it to buggy, or ... ?
Any Alternatives to the Ext.Net Framework?
Thanks for your answers.
Ok, let's start.
Ext.NET is very good and userful framework. Because:
Ext.NET is based on ExtJs. ExtJs is most powerful JavaScript framework for RIA. Of course you can look for analogs but I haven't found them.
Good realization of Ext.NET. The problem was in integration of very complex JavaScript framework with ASP.NET for .NET developers and this problem was solved very good.
Yes, Ext.NET don't have documentation, but examples on examples.ext.net and documentation of ExtJs is enough. And in any time you can look in source code and look at some commentaries and logic.
I can't imagine some buisiness application in Web which realization will be impossible with Ext.NET.
If have you will have any question you always can ask them on forum of Ext.NET. And developers or community always will try to help you.
And last one that Ext.NET have very good legacy from ExtJs - a lot of plugins.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
This is my first time when I want to do linq to sql, I am looking for good video right from the beginning how to put that in vs 2010 if anyone has a good source I would appreciate it very much, I searched already but did not find anything good yet
As far as videos, there are a whole slew of them on the official ASP.NET site.
If you're looking for an example of applications that use Linq-to-SQL, you may want to try the Nerddinner application.
This site is pretty good, I use it a lot: http://msdn.microsoft.com/en-us/vcsharp/aa336746
Here's a good blog post from Jesse Liberty + info about a neat LINQ test tool called LINQPad. He's writing a new book on LINQ & reactive extensions for C# 5.
http://jesseliberty.com/2011/07/19/linq-pad-vs-visual-studio-for-learning-linq/
... and here's the tool that is packed with examples that you can run + play with to see results (way faster than attempting to do the same in VS2010)
http://www.linqpad.net/
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I remember when I switched from Classic ASP to PHP many years ago, and I came accross an awesome document on the net showing how the VBscript differed to PHP. It really helped me when I ported an old photo album software I made to PHP.
I was wondering if anyone knows a similar guide, from PHP to .net? If not, what are the best resources to start? Is there anything I need to untrain myself in doing, being a PHP developer?
Learn ASP.NET: for PHP Developers
This series of code casts and labs from Microsoft should really help you.
http://msdn.microsoft.com/en-us/rampup/dd861537.aspx
Since you seem to be into web development, I assume that you want to use .net and C# to make web projects. There are basically two flavors: ASP.NET Web Forms and ASP.NET MVC. Google for the latter, I think it will feel more "at home" concept-wise when you're coming from PHP.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Guys, is there an easiest way to learn unity ? I haven't read much about IoC etc, but I need to learn IoC based on Unity for my future reference. Please help. Thanks
Also, there is an extremely related post here:
Getting Started with Unity Framework
There's a Hands-On-Lab and more, including the complete documentation at http://www.codeplex.com/unity
All you need is to understand basic conception of IoC/DI, and in order to do that you need to understand factory pattern. It may sound complicated, but in reality its very-very simple pattern.
Check this screencast http://www.dimecasts.net/Casts/CastDetails/33
Unity hands-on labs (part of this set)
Mark Seeman's book on DI (great treatment of the DI topic with Ch.14 focusing on Unity specifically)