本文介绍了创建动态工作的广告横幅的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

您好。



我想使用.Net制作广告横幅,可以在任何网站轻松实施,并提供适当的服务器端功能(国家/地区 - 州 - 使用WCF从我们的服务器选择城市)。考虑到我们放置广告横幅的网站可以使用任何服务器端技术创建最佳方式。

Hi.

I want to create an ad banner using .Net which can be easily implemented in any web site and should provide proper server side functionality (Country - State - City selection from our server using WCF). What should be the best way to do it considering the site where we put the ad banner on could be created using any server side technology.

推荐答案

Control myPlaceHolder = FindControl("form1");

String City = "your city";

String yourBanner = "<asp:label runat=server id=\"yourBannerLabel\" text="\" + City + "\"></asp:label>";

myPlaceHolder.Controls.Add(new LiteralControl(yourBanner));





我希望我能帮到你!如果遗漏了某些内容,请告诉我。



I hope I could help you! Let me know if something is missing.



这篇关于创建动态工作的广告横幅的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 01:14