DTCMS中文章增加tags标签和关键词时中文,替换为英文状态,

DTCMS.Web\admin\article\article_edit.aspx

找到添加和修改的方法

model.tags = txtTags.Text.Trim()
model.seo_keywords = txtSeoKeywords.Text.Trim()

替换为

    model.tags = txtTags.Text.Trim().Replace("",",");//前面一个“,”为中文状态,后面一个","为英文状态
    model.seo_keywords = txtSeoKeywords.Text.Trim().Replace("", ",");

 然后生成,将bin目录下的所有dll文件复制到发布过的网站下面覆盖

posted @ 2015-12-05 12:15  请叫我七哥  阅读(460)  评论(0编辑  收藏  举报