在php中我在像这样的if语句中激活我的像素:
if ($result == C){
echo "<img src='http://www.123123.com/tracking/RecordPixel.aspx?cmp=933&optional'/>";
}else{
echo "<meta http-equiv=\"refresh\" content=\"0;URL='http://123123.co.uk/index.php/'\"> ";
}
我试图在vb.net中这样做,我正在寻找资源而找不到任何资源。
答案 0 :(得分:0)
在VB.NET中,您可以将一个服务器控件添加到页面中,作为文字控件。在codebehind中(例如在页面加载中),您可以将其翻译为类似于:
的内容if (result = C) then
yourLiteralID.text = "<img src..."
else
yourLiteralID.text = "<meta..."
end if