user3147594
user3147594

Reputation: 59

Best approach to start a web application using asp.net and sql server

I am trying to develop a web application using asp.net using C# in the front end and sql server at the backend using visual studio 2012 and sql server express edition 2012. The project that I am currently working on is the online blood bank management with admin and user logins.

I have my ER diagram, schema with all the tables ( about 20) ready. I am not quite sure how to start? Should I first concentrate just on the tables,populate and establish relationships, then proceed to front end design with the registrations part and everything else or just do both of them in parallel? Can someone please guide me through, I am trying to learn application development and this is my first one.

Any online resources for similar sample project walkthroughs along with some explanation will be of great help!!

Upvotes: 0

Views: 433

Answers (1)

mason
mason

Reputation: 32719

C# is not the front end. HTML, JavaScript, and CSS will be the front end. C# will handle server side logic, although you may have some logic in the database stored procedures etc. What you need to do is sit down, design the application (think through the parts) and then implement it. This is not something that can be taught or read in a book, you just have to do it many times in order to get the hang of it.

Upvotes: 1

Related Questions