2021年1月27日 星期三

動態產生超連結底線

.動態超連結 {
    text-decoration: none;
}
.動態超連結:hover {
    text-decoration: underline;

<a class="動態超連結" href="...">...</a>

沒有留言:

自訂權限驗證機制

// 使用 filter [Route("api/[controller]")] [ApiController] [Authorize] [TypeFilter(typeof(CustomAsyncAuthorizationFilter))] public c...