deanvmc
deanvmc

Reputation: 6085

HTML in ASP.NET MVC

Asp.net is my first incursion into web development using server side tech. The last time I used HTML was when tables where used for rendering and CSS was a dream. I know the usual tags but I've come across some like <form /> and <input />.

I haven't used these or CSS before. I am running under the impression that these are standard HTML tags and not asp.net specific, so the question is.

Is there a book that you recommend to structure HTML output using these tags and CSS?

Also anyone know of a resource to learn about GET/POST as I haven't ran into these concepts before.

Upvotes: 2

Views: 133

Answers (3)

Rony
Rony

Reputation: 9511

if you want to learn more about ASP.net http://www.asp.net/mvc

Upvotes: 0

rob waminal
rob waminal

Reputation: 18419

a very basic online tutorial but very helpful

HTML Forms and Input by w3schools

Upvotes: 1

Ufuk Hacıoğulları
Ufuk Hacıoğulları

Reputation: 38468

For books:

If you want to get familiar with tags quickly I can also suggest w3school's html tutorials.

Upvotes: 1

Related Questions