来自应用程序外部的 ASP.NET AdRotator AdvertisingFile xml 文件
我有一个 ASP.NET 网站,我们将其称为 MySite,并且与网站处于同一级别的虚拟文件夹 - Data。在该文件夹中,我有 AdRotator 控件所需的 xml 文件。
我将“http://localhost/Data/Ads.xml”放入广告文件中,但收到此错误:
“http://localhost/Data/Ads.xml”不是有效的虚拟路径。
有办法让它发挥作用吗?
I have an ASP.NET web site, let's call it MySite, and at the same level as the web site, a virtual folder - Data. And in that folder I have the xml file needed in an AdRotator control.
I put "http://localhost/Data/Ads.xml" in AdvertisementFile and I get this error:
'http://localhost/Data/Ads.xml' is not a valid virtual path.
Is there a way to get this working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出于安全原因,使用开箱即用的控件,xml 文件必须位于同一网站上。
您可以编写自己的方法来从外部服务器读取文件(例如使用 HttpWebRequest),然后从该流创建服务器端 XML 文件并将其与 AdControl 一起使用。
还有 AdCreated 事件可供查看。
The xml file must be on the same website for security reasons, using the control out of the box.
You could write your own methods to read a file from an external server, with an HttpWebRequest for example, then create a server side XML file from that stream and use it with the AdControl.
There is also the AdCreated event to look at, too.