多语言应用程序、Microsoft Visual Studio?
我开发了一个网络应用程序,它是一个动态网站。我可以为我的网站添加多语言选项吗?
如果是的话,有没有相关的插件?如何进一步开发多语言应用程序?
I developed a web application and it is a dynamic site. Can I place a multilingual option for my site?
If yes, are there any plugins for that? How can I go further to develop a multilingual application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们有 DropdownList 控件。在其
SelectedIndexChanged
事件上,它会回发,然后我们更改站点区域性,然后加载相应的资源文件...DropDownList ASP.NET 代码
公共类由所有网页继承
扩展方法(仅供参考)
请在开始实施之前查看这些链接:
这些使您要使用的所有页面都从
languagebase
类继承,如下所示:We have the DropdownList control. On its
SelectedIndexChanged
event, it postbacks and we then change the site culture, and it then loads the respective resource files...DropDownList ASP.NET Code
Common class inherited by all of the web pages
Extension Method (just for sake of information)
Please review these link before starting to implement:
These make all of your pages to use inherit from the
languagebase
class as below: