将tags标签的值赋到SEO关键词上

admin\article_edit.aspx中

$(function () {  方法中加上

  //tags的值赋到SEO关键词上
$("#txtTags").blur(function () {
$("#txtSeoKeywords").val($(this).val()); });

将摘要的值赋到SEO描述
admin\article_edit.aspx.cs中
model.seo_description = txtSeoDescription.Text.Trim();
放在
 //内容摘要提取内容前255个字符
if (string.IsNullOrEmpty(txtZhaiyao.Text.Trim()))
{
model.zhaiyao = Utils.DropHTML(txtContent.Value, );
}
else
{
model.zhaiyao = Utils.DropHTML(txtZhaiyao.Text, );
}

之后,

改为
   if (txtSeoDescription.Text.Trim() != "")
{
model.seo_description = txtSeoDescription.Text.Trim();
}
else
{
model.seo_description = model.zhaiyao;//自动描述 }

案例网址www.vikeycn.com

04-25 23:00