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.
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 wish to produce a contact form on a website and was looking to use C# and ASP.NET. What version of ASP.NET should I use. I do not know the difference between them all. I have already created the form through HTML and CSS and need to add some validation.
Both WebForms and MVC are built on ASP.NET. ASP.NET is the basic .NET framework library for web applications. There are three derived frameworks that Microsoft provides, WebForms, MVC, and Web Pages (using WebMatrix). There are also a number of third party frameworks built on MVC, such as fubuMVC and Nancy.
There are already many questions on Stack Overflow asking about the difference between these, I suggest you search on them.
However, if all you need is validation, you don't need any of these, as you can use jQuery validation directly with static HTML pages.
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'm gonna start developing a single page web application using Microsoft stack. In some critical parts of the project I have to provide real time data.
I can use Signalr or Web Sockets for these kind of tasks. Can you do a comparison of them in terms of usability, performance or learning curves of these technologies. And I'm glad to know if you have another option to suggest.
Thanks in advance,
I think you should go with signalR. It is part of .net framework, it also supports web sockets and if any client doesnt support web sockets it will fallback to long-polling, forever frames any other technology available.
.NET 4.5 WebSockets vs SignalR
http://www.asp.net/vnext/overview/signalr/signalr-and-web-sockets
http://www.hanselman.com/blog/YourUsersDontCareIfYouUseWebSockets.aspx
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 10 years ago.
I want to write webservice on .NET (my Client can be Android, iOS, Mac OS, Website...). My question is that I should use WCF or ASP.NET to do this?
I assume you mean ASP.net Web Apis when you mention ASP.net. There is also ASP.net soap services but those won't be ideal to work with on platforms such as android or iOS.
If you are unsure about what the different web services are, you will most likely want to use ASP.net Web APIs as these are easy to set up and offer multiple content types, XML, JSON, possibly more...
WCF is more built for web services however it has a steep learning curve, which is why I say if you're unsure about what you want, you most likely aren't making something which will require WCF.
For more information I suggest reading: http://idesign.net/articles/asp_net_web_api_vs_wcf.htm
I am assuming you are asking for WCF or websevice. I think WCF is better option. For your refrence:
http://www.thedevheaven.com/2012/10/difference-between-wcf-and-web-service.html
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