.NET website lightweight framework [closed] - c#

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'm looking for lightweight framework to build my custom website. Originally I'd love to get a platform that implements user registration, login, logout and probably account management at some point.
The thing is I don't want to have any "extras" there and I don't want to develop sign-up/login part again...
What options do I have? I was looking at mojoPortal, but there's a lot of restrictions and features I'll never use.
Any suggestions?
PS.
.net 2.0/3.5

asp.net mvc out of the box has the membership provider built in that allows sign up and login.
if you also need a bit of CMS like stuff, maybe try Actya
http://blogs.taiga.nl/martijn/2012/01/23/introducing-actya/

Related

Can't find Build Action in ASP.NET website [closed]

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 have the following problem, but I can't reproduce the solution because I can't find Build Action property in my resource properties.
Why? Where is that?
ASP.NET web sites do not build.
This is one of the best reasons not to use web sites. Most examples will assume web applications. Use web application projects instead of web sites.

Looking for a standalone and open source Social Login Library for ASP.NET MVC [closed]

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 looking for a stand alone and open source "Social Login" library for ASP.NET MVC, which supports most of the popular social sites such as Facebook, Twitter, Yahoo, Linked In, and Google.
I know there are some websites which provide this kind of online services (janrain.com), but they are not free.
I know FB and Google supports OpenId, and the rest is also can be integrated using their web services. However, I prefer to use a single library to not make the code too complicated.
Please help.
Thanks a lot in advance.
DotNetOpenAuth is the way to go. It fully supports openId and OpenAuth specs (1 and 2) and is well respected within the community.
DevDefined.OAuth is another option. I've never used it myself, so I can't give you any information about it, but it might be worth looking into.

How to create a new Facebook application in C# as facebook has obslete the FBML for now [closed]

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 we well know that facebook has made heavy changes in their privacy policy. and as per now they have stooped supporting FBML.
So can any one please tell me what is the new procedure and some code snippets to create an application in facebook with as.net, C#.
The best advice is to read the Facebook documentation. FBML has been replaced by Social Plugs which run client side. They are pretty easy to use from anywhere to quickly enable integration and to pull Facebook features into your site.
I wrote an article here which shows how to mix server-side C# logic and leverage Social Plugins for authentication.

What is the best open source for .NET controls? [closed]

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.
Does anyone know the best opensource for .NET controls?
With Dev Express, Telerik, they so cool, but they are commercial version.
You can already find quite a lot of interesting stuff on Codeplex. And of course there's no stopping yourself to create your own custom controls for your application. Take a look at these tutorials: Developing Custom ASP.NET Server Controls..
How about Mono’s re-implementation of Windows Forms?

Does anyone know of a good C# API for Subversion? [closed]

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 looking to make calls out to a subversion repository, but I would like to write it in C#. Does anyone know of any good libraries?
Have a look at SharpSVN. This is an open-source binding of the Subversion Client API for .Net 2.0 applications.
For example, this library is used by the AnkhSVN Visual Studio Add-In.
I recommend you look at the Tortoise SVN source code.
It is mostly in C++, but since it is all done in VS, it should be easy to wrap up and use much of the code again.
You can also try SubversionSharp if you want less heavy lifting (however it is not yet a stable release, so be cautious).
How about SubversionSharp.

Categories

Resources