Make partial view like in web-forms
I want to add few lines of identical 开发者_如何学Pythonhtml code to several pages in my web-forms site. In MVC I know that theres Partial Views that all you have to do is Html.Partial("partial view location"). I dont want to using MVC classes or something like that in my web-forms pages..
And I wonder if theres something like that in web-forms..?
Thanks
UserControl will take care of this. its small reusable pieces of code
精彩评论