Vẽ biểu đồ bằng Chart.JS 
https://www.chartjs.org/docs/latest/samples/line/line.html

Hashtag:
CSS gradient online
https://cssgradient.io/gradient-backgrounds/


Hashtag:
Ren view partial Append to View

@Html.Action("MauInHopDongMuaBan", "QuanLyHopDong", new { area = "HopDong", idHopDong = Model.ID })

Hashtag:

How can I get the DateTime for the start of the week?

  public static class TIMEE
{
    public static DateTime StartOfWeek(this DateTime dt, DayOfWeek startOfWeek)
    {
        int diff = (7 + (dt.DayOfWeek - startOfWeek)) % 7;
        return dt.AddDays(-1 * diff).Date;
    }
    public static DateTime EndOfWeek(this DateTime dt, DayOfWeek startOfWeek)
    {
        int diff = (7 - (dt.DayOfWeek - startOfWeek)) % 7;
        return dt.AddDays(1 * diff).Date;
    }
}


Hashtag:
Bỏ chế độ readonline excel
1. Select No when prompted to open the Excel worksheet as read-only.
2. Choose File, followed by Save As and Browse.
3. Click Tools at the bottom of the Save As menu and choose General Options.
4. Under General, find the Read-only Recommended check box and uncheck it.
5. Click OK


Hashtag: