عنوان:

‫ویژگی Image Tag Helper در MVC 6.0


نویسنده: سیروان عفیفی
تاریخ: ۱۳۹۴/۰۴/۱۷ ۱۸:۳۵
آدرس: www.dntips.ir
<img src="~/images/logo.png" 
     alt="company logo" 
     asp-file-version="true" />


 which will generate something like this:
<img src="/images/logo.png?v=W2F5D366_nQ2fQqUk3URdgWy2ZekXjHzHJaY5yaiOOk" 
     alt="company logo"/>

The value of the v parameter is calculated based on the contents of the image file. If the contents of the image change, the value of the parameter will change. This forces the browser to download the new version of the file, even if the old version was cached locally. This technique is often called cache busting.


مشاهده مطلب اصلی