0

I am new to asp.net and ado.net. I must to develop a content management system with .net and I wonder which option is right for me, disconnected or connected architecture for web? I dont understand why I should use dataset on online applications.

amone
  • 3,712
  • 10
  • 36
  • 53

1 Answers1

0

It sounds like you are getting started with ASP.NET so depending on which technology you prefer (MVC or Web Forms) either of these two tutorials provided by Microsoft will be of great help on general data access.

MVC: http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc Web Forms: http://www.asp.net/web-forms/tutorials/data-access

Kane
  • 16,471
  • 11
  • 61
  • 86
  • Thanks for your answer. I am using web forms and just wonder which should I prefer, disconnected or connected architecture for web project. – amone Jun 17 '12 at 04:49
  • To be honest the question doesn't make any sense as HTTP is a stateless disconnected protocol. I would suggest posting a new question (perhaps on codereview.stackexchange.com) and ask if it can be improved. – Kane Jun 17 '12 at 04:50