我尝试编写 Control (.ascx) 来管理我内部页面上的横幅。
我通过 switch case 来做到这一点,每个 ID 都匹配正确的横幅。问题 - 我如何将 Adwords JS 脚本放在switch break;
?
它应该是这样的:
switch(_bannerId)
{
case "banner1":
{
<script type= >
Google adsense code
</script>
}
case "banner2":
{
<script type= >
Google adsense code
</script>
}
break;
}
可能吗?怎么做?
编辑
它不适用于Response.Write()
我尝试搜索“如何从后面的代码调用 Javascript”,但找不到合适的帖子。