The problem for you with a PHP background doing an ASP.NET (Web Forms) project will not be the syntax of C#or missing (class) library know how but the paradigm shift to ASP.NET (Web Forms) with it's control, post back and view state concept.
I'd recommend to use ASP.NET MVC or the ASP.NET Web Pages approach because they are more close to HTML and HTTP and do not put an (hard to understand in all details) abstraction above the stateless HTTP protocol. For data access I'd recommend to use something like Entity Framework (EF) Code First , which is integrated nicely in the ASP.NET MVC3 Visual Studio templates or some micro ORM like massive when using the ASP.NET Web Pages approach. For a simple application you will not need to understand every detail of EF or massive. LinQ and lambda expressions are definitely two concepts you should have a look at because they are used for querying in EF and together they are a quite powerful tool.
Edit:
A good place to start with ASP.NET (Web Pages, Web Forms and MVC) the getting started page on asp.net