In above MVC 3.0 View one string variable include the html but not working
string address = "-";
if (Model.Landmark != null)
{
address = Model.FlatBuildingName + " " + Model.RoadStreet + " " + Model.Landmark +"</br> "+ Model.Pincode + " " + Model.Villagecity ;
}
include the html tag but out show the
Out Put
FlatBuildingName RoadStreet Landmark</br>PincodeVillagecity
</br>to<br />and then go with the suggestion provided by @webdeveloper