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 am programmer but not good i am working with c# , asp.net and MVC too. so how i can improve our coding skill for develop a better web apps. means how can i learn it.
Obviously you need some good ASP.NET MVC resources as the other answers have pointed out. It is also worth investing time in learning about the .NET framework itself. For this purpose I thoroughly recommend CLR via C# by Jeffrey Richter.
I'd recommend getting Professional ASP.NET MVC 1.0 and working through it and the examples in it, particularly the Nerd Dinner Example.
Learning resources:
The Official ASP.Net site (Video, Tutorials, Documentation)
Learn ASP.Net MVC
What I think you should start with is some beginning book and move towards professional. One book could be
http://www.amazon.com/Beginning-ASP-NET-3-5-2008-Professional/dp/1590598911
once u understand this book then u can for MVC book like.
www.amazon.com/Pro-ASP-NET-Framework-Steven-Sanderson/dp/1430210079
In between try to learn by googling topics like. TDD(Test Driven Development), DI(Dependency Injection) and Other design Patterns
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 9 years ago.
I am a asp.net webforms developer (have 4 years of expirience), and have some expirience with MVC and razor engine + normal front end like jquery/templating and so on. Im used to build sites up from scratch. Yesterday ive got an idea to learn one of the CMS systems which everybody talks about. I chose Umbraco to be the system of my choice. Ive lerned some basics like templating, document types, content handling and so on.
Right now i really dont see when i should use umbraco and when to use plain asp.net webforms/MVC to build a website.
Can anybody explain me what is it that make umbraco so good that alot of people use it? The only thing i can see is that it makes some clear structure of a webpage.
As with all other Content Management Systems (CMS), they are build for the end-users to manage the content of their website in an easy way without the need of understanding, html, php or other programming languages.
Besides this, Umbraco is a powerful and flexible CMS build on the ASP.NET Framework and it is free and open-source.
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 9 years ago.
I am new to business integration.
It is under my consideration that as a software engineer one's task is to design/deploy web services using an application server and some integration design tool and to provide mediation software modules to decouple existing web services.
The thing is I am not familiar with SOA philosophy and am still a bit lost in various documentation.
I understand the tools used are application servers(like WebSphere or Jboss) development environments (like Java EE Eclipse or IBM Integration Designer).
I need a concrete example from Alpha to Omega on how a SW engineer acts in deploying a business integration project.
E.g what kind of enterprise could one collaborate with and what kind of business logic has to implement...
I know my question is vague but I am starting from scratch and I need to understand essential concepts.
Any advice would be accepted as well.
Thank you!
An exceptionally broad question and myriad answers.
I suggest you start with this. It should provide a good begining understanding of SOA.
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 have a general question. I want to develop a Web Application for business process modelling. The application was build using c# and WPF as Desktop Application Software and now i would like to develope it as Web Application. what technology should i choose?
I've tried to find it myself but there are many different opinions about that topic. Is there any general rule or methodology which can help me decide?
Your question is not quite constructive. You need to talk to some Architect to understand your business and the requirements to fill up the gaps of choosing a technology. It is quite vague to answer your question whether to choose ASP.NET webforms/MVC or probably a different platform than .NET to suit your needs.
On a general answer, if you are planning to port your whole application developed on desktop using WPF, you can consider porting to Silverlight which might cut down your cost to 90% (probably), where you will able to reuse all codes you have written so far. But that's totally your call and your business needs.
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 12 years ago.
This is not meant to be a subjective or argumentative question.
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.
If you compare just raw execution .NET is faster than PHP or RoR. However, the speed and overall performance of an application depends on its architecture. For example: StackOverflow runs on less than 10 servers. I work for a company that runs a website with pretty much the same hardware (+- 10 heavy work servers) but SO is way faster and has hundred times more access that my company's website.
So in most case it is really about how you implement the software other than the platform itself.
You can not compare the language only based on speed. Each language has its own features. So you need to choose as per your requirement.
For example. If you want less spendings on hosting and other stuff then go for PHP else if you want pure MVc then gofor ruby on rails or asp.net mvc.
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'm developing a web application that will need to be localized to English and Portuguese (and possible more languages later). I'm aware that the .NET Framework offers full support for UI localization, however, I'm not so sure what's the best approach to implement it.
What do you consider the best practices for a web application localization?
Also have a look at
Globalization and Localization Demystified in ASP.NET 2.0
Pretty good coverage and explanation.
Read ASP.NET Globalization and Localization and ASP.NET Globalization and Localization, both from MSDN. I have found that following the Microsoft practices on localization is easy and does the job.