I\'m creating a content management system where a user can select a css file from their server and the application will parse and store the css. The application will need t
Make a controller which serves the CSS content:
Controller code:
public class ServeController: Controller { public ContentResult GetCss(string id) { string cssBody = GetCssBodyFromDatabase(id); return Content(cssBody, "text/css"); } }