Next version? You mean Visual Studio 2012?
This would be a nice feature for sure. But in the mean time its simple enough to add the link to the containing page in the OnInit method.
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
// Add reference to css stylesheet
HtmlLink link = new HtmlLink();
link.Href = "PathToStyleSheet.css";
link.Attributes.Add("type", "text/css");
link.Attributes.Add("rel", "stylesheet");
Page.Header.Controls.Add(link);
}
Don't forget to click "Mark as Answer" if someone answers your question. Feel free to mark more than one answer, if you feel so inclined.