I am using UNITY 2.0 with MVC 3.
I have injected types using the container into MVC.net solution. All this while the types were non-UI component.How can I inject a type which has UI ?
The solution i can think of is to write UI rendering Code somethign like following and wrap it with a C# Type.
class HTMLHelper
{
string spitTable()
{
string strUITable = "<Table><TR><TD><TD></TR></Table>";
return strUITable ;
}
}
Is it correct way of doing thing ? Any one having better solution ?
Iam using ASP.NET MVC and still prefer to use the shtml files :)