我正在管理一个在线商店,客户可以从中选择他们的国家DropDownList
来计算他们订单的运费,但我发现搜索引擎的结果显示了这个控件中的国家列表。
任何人都知道任何公认的 SEO 做法可以避免这种情况发生吗?
添加代码
<asp:DropDownList ID="CbCountry" DataTextField="Country" AutoPostBack="true" DataValueField="IdCountry" runat="server"></asp:DropDownList>
使用DropDownList
此函数从数据库中填充:
CbCountry.Items.Clear()
CbCountry.DataSource = (New CountryManager).GetCountries(lang)
CbCountry.DataBind()
If CInt(0 & Country) > 0 Then
CbCountry.SelectedValue = Country
End If