HTML/CSS and ASP.NET

Good day, everyone. I am currently a 2nd-year college student and we are being asked to make a homepage using ASP.NET. I only know HTML and CSS, can I use HTML/CSS to make a homepage in ASP.NET?
4 Replies
Anchy
Anchy2w ago
Do you have any more information for this task? There is a couple of options to choose from here if you want to build a "home page" using ASP.NET. - ASP.NET Razor Pages - ASP.NET Blazor If you are looking for reactivity (where parts of the page update dynamically without reloading) or want to build a Single-Page Application (SPA), Blazor might be a better choice. Blazor lets you write interactive web applications using C# instead of JavaScript through Razor Components. But if you are new to ASP.NET and just need a simple homepage, Razor Pages could be a better starting point. You can write your homepage in mostly HTML and CSS and integrate the Razor syntax into your pages. Do some reading into these two technologies and come to your own conclusion.
analino ✝
analino ✝OP2w ago
Our teacher asked us to use ASP.NET to build a homepage about a certain business that we would like to have (any business). I'm new to ASP and the deadline is in 3 days. Can I use HTML/CSS without the Razor thing?
Anchy
Anchy2w ago
You can build Razor Pages with minimal razor syntax yes
analino ✝
analino ✝OP2w ago
Okay, thanks.

Did you find this page helpful?