2019年6月24日 星期一

[筆記]手機瀏覽器Debug工具 vConsole

使用方式:

<script src="https://cdn.jsdelivr.net/npm/vconsole@3.2.0/dist/vconsole.min.js"></script>

<script>

var vConsole = new VConsole();

</script>

2019年6月9日 星期日

[筆記]MVC路由傳遞空字串參數

參考網址:
https://stackoverflow.com/questions/17702203/mvc-html-actionlink-removes-empty-querystring-parameter-from-url


@Html.ActionLink("Action",
                 "Controller",
                  new { item1 = new EmptyParameter(), item2 = "value" });

public class EmptyParameter
{
    public override string ToString()
    {
        return String.Empty;
    }
}