how to add script src inside a View when using Layout

前端 未结 3 965
清酒与你
清酒与你 2020-12-04 07:19

I want to include a javascript reference like:


         


        
3条回答
  •  难免孤独
    2020-12-04 08:20

    You can add the script tags like how we use in the asp.net while doing client side validations like below.

    @{
        ViewBag.Title = "Index";
    }
    
    

    Index

提交回复
热议问题