Reputation: 53446
I have a master page which is shared between about 20 views. In just one view, I need to make one small adjustment to the master page (I need to hide a textbox).
How can I include css or javascript in my view to acheive this?
Or is there some clever trick like including a conditional <% if (View.Name = "blah") { ... } %>
that I can stick in my master page?
Thanks for any hints.
Upvotes: 0
Views: 357
Reputation: 2550
As you said you can write a JavaScript code to achieve your goal and include it only in one view. In one of my projects I do the same: I have jQuery AJAX request only at one view, so I just used script
tags to include it
Upvotes: 2