I was trying to convert a vb site into MVC. Problem is that there are few classes in which literal Control are created at run time and assigned value like:
Dim l As New Literal
l.Text = sContext.an
Return l
How can we convert literal control in MVC?
Go to the complete details ...