I am coding a MVC 5 internet application and have a question in regards to accesssing html classes or divs via razor syntax.
Is it possible to access a html class or div via razor syntax and append some html code to the class or div?
Is there a html helper that can do this, or is it possible to create a html helper than can do this?
I am wanting to add html code to certain class and div elements where I have the class and div name and the html code to add.
Thanks
I have found what I need, it is called Html Agility Pack.
I was looking for something to access html, and razor does not support this. Html Agility Pack can load an html document into memory and code can be written to access, add, delete and modify content.