如何以编程方式使用 noscript 调用Facebook Pixel Code?
当您将脚本和 noscript 代码。有没有办法围绕脚本和 noscript 代码包装函数,或者在DotNetNuke的代码隐藏中构建它?

&# xA;我想从代码隐藏中以编程方式调用此代码的原因是我可以设置ID和高级匹配/变量(custemail,custfirstname和custlastname)
&#xA;&#xA; <我有一个关于这个的类似问题,有更多我想要做的代码但是这个帖子会更容易理解。 &#xA; 如何加载Facebook Pixel NoScript代码DNN代码隐藏? &#xA;&#xA; &lt;! - Facebook Pixel Code - &gt;&#xA;&lt; script&gt;&#xA; !函数(F,B,E,V,N,T,S)&#XA; {如果(f.fbq)返回; N = f.fbq =函数(){n.callMethod&#XA?; n.callMethod.apply(N,参数):n.queue.push(参数)};&#XA;如果(!f._fbq)f._fbq = N; n.push = N; n.loaded = 0;!n.version = '2.0';&#XA; n.queue = []; T = b.createElement(E); t.async!= 0;&#XA; t.src = V; S = b.getElementsByTagName(E)[0];&#XA; s.parentNode.insertBefore(t,s)}(window,document,'script',&#xA;'https://connect.facebook.net/en_US/fbevents.js');
fbq('init','1564120846976681',{&#xA; em:custemail,&#xA; fn:custfirstname,&#xA; ln:custlastname,&#xA;});&#xA; fbq('track','PageView');&#xA;&lt; / script&gt;&#xA;&lt; noscript&gt;&lt; img height =“1”width =“1”style =“display:none”&# XA; SRC = “https://www.facebook.com/tr?id=00000000000&ev=PageView&noscript=1”/&GT; &#xA;&lt; / noscript&gt;&#xA;&lt;! - 结束Facebook像素代码 - &gt;&#xA;
&#xA;
答案 0 :(得分:0)
$Files = Get-ChildItem -Path E:\Script\test |
Where-Object {$_.CreationTime -gt (Get-Date).AddDays(-1)}
$Files | Select-Object -Property Name, hash, LastWriteTime, @{N='SizeInKb';E={[double]('{0:N2}' -f ($_.Length/1kb))}}
标记对提供的URL执行简单的HTTP GET
您应该能够在C#代码中执行相同的操作。