asp.net mvc 3 - how can i append my meta data title ? in MVC -
currently way title added:
html.addtitleparts( !string.isnullorempty(model.metatitle) ? model.name : model.metatitle );
and renders eg:
<title> lukx.ru</title>
i append ith text , should this:
<title>очки burberry купить в интернет магазине lukx.ru</title>
you can use nopcommerce methode html.appendtitleparts()
append string. if need customized logic generating title inherit or extend nop.web.framework.ui.pageheadbuilder
. class marked partial
, every method virtual. should no problem change behavior of generating page title.
Comments
Post a Comment