C# On Modify relative urls in a c...

by Buu Nguyen, November 01, 2009 06:52

@Ants: that's an interestin...

B9254a3eaa9b34627e7bf617b32b0ed9 Talk
1
2
3
4
private static string FixUrl(string cssPath, Match match)
{
	try
...

C# On Modify relative urls in a c...

by Buu Nguyen, October 31, 2009 09:52

@Ants: Thanks. You're righ...

B9254a3eaa9b34627e7bf617b32b0ed9 Talk
1
2
3
4
public string Transform(string cssPath, string cssContent)
{
        return Regex.Replace(cssContent, @"url\((?<url>.*?)\)", 
...

C# Modify relative urls in a c...

by Buu Nguyen, October 30, 2009 16:39, 5 refactorings, tagged with css asp.net c#

This function changes all U...

B9254a3eaa9b34627e7bf617b32b0ed9 Talk