0

Need an advice on design approach. I spent couple of hours googling and still cannot come to a conclusion. Task at hand:

  • design intranet app that will have access control. Users should be given rights to access it.
  • C# is a preferred design language
  • app can be a simple form with some text fields and some fields as dropdown boxes from a DB
  • app will send SOAP request upon form completion
  • there should be a couple more forms like db search, preferably with sorting ability for columns

There is a Sharepoint I can get access to. Can it easily solve the access rights management or or should create a separate app on the same IIS or perhaps I shold request a separate IIS created and deal with access rights via DOTNET solutions? What is the quickest way to design this in your view?

Our SharePoint is 2010, and professional edition of VS2013 available for development.

Thank you

fortran
  • 80
  • 7

1 Answers1

0

About SharePoint:

I think most easy way is using SharePoint 2013 Foundation (it's free if you have Windows Server license). And using javascript and HTML - in this way you don't need to know anything about deploying solutions in SharePoint etc. But you can do it via custom web parts - in this way you may do it like common asp.net development. But it's not a best way.

  • Looks like SharePoint is the way to go, but as it turns out there are many options within this approach. Could you please add links to your answer supporting all the different options you are recommending? It will help me to make decision. – fortran Mar 31 '14 at 18:33
  • @fortran, I'm added some links. SharePoint is a huge topic and I can't cover all, but SharePoint for developers portal is a good startpoint. And you can read some books - it's very usefull to understand SharePoint. – Nikolay Zainchkovskiy Apr 01 '14 at 08:45