【ASP.NET】異なる製品のダイナミックページに異なるtitle、keywords、descriptionを追加します.
1464 ワード
JSでtitle、keywords、descriptionを追加することはできません.このように検索エンジンが獲得できないからです.サーバー側のプログラムのみで動的に追加できます.
そしてページの端に:
public string title = "";
public string keywords = "";
public string description = "";
protected void Page_Load(object sender, EventArgs e)
{
switch (Request.QueryString["bot_typee"])
{
case "deebot":
title = " ";
keywords = " ";
description = " 。";
break;
case "atmobot":
title = " ";
keywords = " ";
description = " 。";
break;
case "winbot":
title = " ";
keywords = " ";
description = " 。";
break;
case "famibot":
title = " ";
keywords = " ";
description = " 。";
break;
default:
title = " ";
keywords = " ";
description = " 。";
break;
}
}
または上記のコードを.csファイルに書いてください.そしてページの端に:
-ECOVACS