我在我的网络应用程序上添加了 Facebook 点赞按钮。这是我的html上的代码
<div class="fb-like" data-href=http://someSite.com/ data-width="350" data-show-faces="false" data-send="false"></div>
我查看了stackoverflow,发现我可以通过这段代码捕获html的curent url
string path = HttpContext.Current.Request.Url.AbsoluteUri;
现在我想为我的path
价值设置这个like按钮。像这样
<div class="fb-like" data-href=path data-width="350" data-show-faces="false" data-send="false"></div>
但它不起作用。我查看了stackover但没有找到任何答案)