asp.net - Html.actionlink open site in div -


i new entire asp .net mvc 4, sorry silly question:)

after user logs in, want make left sidebar links. when user clicks on link want prevent opening in new page. instead of want open in same page in different div class, floated next it.

is possible achieve without using ajax or jquery etc. ? not want use of these, because trying make website secure possible (i making own banking website, silly idea know).

@html.actionlink("balance", "balance", "ebank")</li>  @html.actionlink("transaction", "transaction", "ebank")</li> 

i want these actions loaded, opened in div class="bank-content"

as per idea markpsmith can have following:

<div class="row">   <div class="col-md-8" id="balance">      @html.action("balance","ebank")   </div>   <div class="col-md-4" id="transaction">      @html.action("transaction","ebank")   </div> </div> 

now default: can hide them using javascript or jquery , on click of button can show them.


Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -