user1384356
user1384356

Reputation: 7

Need advice for best practices how to create small website using asp.net

I need to create one small application using asp.net with a login page. After login I want navigation menu items. How do I create these navigation menuitems? I have some ideas in mind using iframe, usercontrols or master page.

Upvotes: 0

Views: 122

Answers (2)

Kane
Kane

Reputation: 16802

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 sets of tutorials provided by Microsoft will be of great help.

IMHO you would do well to go with a predefined CSS framework (like Bootstrap from Twitter) and MVC.

Upvotes: 0

Habib
Habib

Reputation: 223187

You may look into SiteMap

Also check this tutorial: Building our Master Page and Site Navigation Structure

Upvotes: 1

Related Questions