Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have trouble creating a project with asp .net. and terelik
I have to create a system. Account management Everytime i want to know Which libraries help to create account management with .net and support the terelik ui
some thing like manage rule for the any method, just install packages then the packages has initial the table model controller or something.
I guess there are no package which you can just install and get everything already done but there are number of projects in code project site. You can download them and integrate. Beside that you can use Microsoft Identity which provide bootstrap code for user registration/login and you can customize according to your need and role base access can be simply done in mvc just by providing role in controller attribute.
And I am not aware of Telerik providing such functionality. You should implement those using Telerik controls.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Hello StackOV experts!
I've just completed the core pieces of my first MVC3 site. While showcasing it to folks, I received additional requirements (Wiki and document library being the ones of concern here).
One of the other developers suggested using SharePoint components to address the feature needs. We have a SharePoint server. Can we use the SharePoint components and incorporate them in the current site without overhauling the website to SharePoint? If so, can you please provide some examples?
Thanks in advance!!
hmm... those are the key features which make SP solution win over any ASP.Net or MVC application.
Anyway , few options you have is to write custom UI
and use client object model / Rest APIs to post and pull data from SP2010
If you are using MOSS 2007 then you can look into "SPServices" project in Codeplex , which uses JQuery + SP2007 Webservice to give you kind of same behaviour.
There will be lot of limitation also as you will not be able to use Office Integration from MVC application as you can do in SP2010.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I recently developed a win form application in C#. Now application is complete and working fine as expected. Now i want to implement licensing feature in it i.e either user buy license key or simply run trial version that expire after some time. Since i have very few time left in Deployment so i prefer some already existing library that did the job for me. More preferable some open source one but paid version also works. In case if there is no such existing solution then please guide me how to implement that.
Take a look at Eziriz's products. I use both of them, one for great obfuscation and the other for licensing. While the obfuscator itself has good support for licensing, IntelliLock is maybe something you'd want to look at for a robust solution.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is Unity a part of .net framework or is it external?
Where can I get it and how can I add it to my project?
any good tutorial on how to use Unity?
Thanks
It is external
get it from the unity site: http://unity.codeplex.com/
If you're having trouble setting it up, have you tried using NuGet? It should add it to your project, update your config files, etc for you.
EDIT: I haven't watched it yet, but this screencast: http://www.pnpguidance.net/Screencast/UnityDependencyInjectionIoCScreencast.aspx is recommended in another question: Getting Started with Unity Framework
From the MSDN
http://msdn.microsoft.com/en-us/library/ff649614.aspx
It's part of Microsoft's Enterprise Library, which is freely downloadable from Codeplex. Enterprise Library contains various code blocks of varying usefulness including IOC (Unity), logging, data access, caching, etc..
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm working on a new web application in ASP.NET 2.0 using C#, and in this application there are two key things I need. The first is basic user accounts on the website, and the second is a profile page for the each user. I have some experience with web apps, but I've never done user accounts. Will I need a back-end database?
Can anyone point me to any relevant resources, or help me out themselves?
Thanks in advance!
Yes, you will need a database (you can use Sql Server Express, which is free). There's an in-built system for user accounts in asp.net, called membership, which you should take a look at. It also supports simple profiles.
do you want to identify and use the winows user accounts, like the Active Directory ones or you want to create your own user and group lists?
I would say 99% of the cases you would need a database in both cases, if you plan to be able to set which permissions every user or group has on which object and you want to handle group membership as well...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am creating a website, and I want to integrate Facebook profile with my application users. That is, all the registered users can view facebook profiles of other registered people in my website. Can I do that? Is there any Facebook API available which I can using with .NET code to achieve this?
One of the best libraries available for Facebook and .NET is the Facebook C# SDK.
http://facebooksdk.codeplex.com/
There are a couple sample projects for integrating your Facebook app with ASP.NET MVC, Silverlight, and WebForms.
The package is available from NuGet as well.
One of the nice features of this library is it's use of dynamic objects. This article explains the advantages of using dynamic over strongly typed methods.
http://ntotten.com/2010/09/dynamic-objects-and-the-facebook-c-sdk/
Using the Json.NET library, serializing the dynamic responses to POCO is very straightforward.
The best place to start this is Face Book Developers