The project i am currently working on has an HTML/CSS layout which consists of 3 columns, the first contains a menu to access the various pages. When one of these options is selected the page appears in the second column and the same for selecting anything from the second column it will appear in the third. Just wondering how I can implement this so when a user selects the link on the second column it will produce output in the 3rd (the output to be displayed in the 3rd column will depend on the link selected and the parameters entered by the user in a form which is included in the second column). It sounds very confusing and not sure if I explained it well enough, I've never worked with a dynamic layout like this before, I'm used to just selecting the link and loading that page so any help would be great, thank you.
coder91 0 Junior Poster
Recommended Answers
Jump to PostYou mean a partial view?
Include them with
@Html.partial()
in your cshtml (if you're using the Razor view engine anyway, not sure about the use with other engines). You can pass along the model as well.You'll have to Google a bit or wait for someone more knowledgeable if you …
Jump to PostThere are different ways to approach this... some good recommendations above. it would help to know if you are developing asp.net web forms, mvc, or web pages (razor).
You can refresh the various areas of your screen by posting back and taking care of everything server side, or you can …
All 5 Replies
Traevel 216 Light Poster
tdrosiadis 0 Light Poster
coder91 0 Junior Poster
tdrosiadis 0 Light Poster
JorgeM 958 Problem Solver Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.