Posts by Wendel Estrada • 1 point
2 posts
-
0
votes1
answer38
viewsA: Is there any way to load Script or CSS that is placed in Buddles in ASP.NET only in a single View?
Yes, there is. References placed in Bundleconfig do not necessarily have to click on all pages. You can determine which page you want to put the script to as follows: _Layout.cshtml Edit.cshtml In…
asp.net-mvcanswered Wendel Estrada 1 -
0
votes1
answer142
viewsA: Vertical scrollbar in DIV in ASP.NET
This is Bruno, blz? Man, I think this is a simple way to solve your problem: .div1 { height: 500px; position:relative; } .div2 { max-height:100%; overflow:auto; border:1px solid red; } .div3 {…