dpaquette / TagHelperSamples

A set of sample tag helpers for ASP.NET Core MVC
http://taghelpersamples.azurewebsites.net/
Other
376 stars 97 forks source link

Is there any tag helper to add prefix to img' src attribute? #51

Closed xiaoxin01 closed 7 years ago

xiaoxin01 commented 7 years ago

I want to do some thing like this:

<img src="a.jpg" asp-append-cdn=true />

render as:

<img src="http://somecdn/a.jpg" />

Is there any way to do this?

peterblazejewicz commented 7 years ago

The built-in ImageTagHelper should be exended: https://github.com/aspnet/Mvc/blob/dev/src/Microsoft.AspNetCore.Mvc.TagHelpers/ImageTagHelper.cs It supports asp-append-version already.

xiaoxin01 commented 7 years ago

@peterblazejewicz

Got it, Thanks:)