ASP.net MVC 主题更改帮助
我有一个使用 ASP.Net MVC 开发的网站。现在我想根据请求(基于国家/地区)我想更改网站主题。
例如:美国 - 主题 1 加拿大 - 主题 2
如果请求与我想显示默认主题(我当前的主题)的任何主题都不匹配。
我怎样才能动态地实现这一点。
我需要再次重写我的CSS吗?或者有更好的方法吗?
请分享您的想法
提前致谢:)
I have a website developed using ASP.Net MVC. Now I want to based on the request(based on the country) I want to change the web site theme.
Ex: for USA - theme 1
for Canada - theme 2
If the request is not matching to any theme I want to display default (my current theme).
How can I achieve this dynamically.
Do I need to rewrite my css again or Is there a better way to this?
Please share your ideas
Thanks in Advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该为常见样式定义一个全局 css 文件。假设您有某种用于访问当前国家/地区的帮助器方法,您可以有条件地加载国家/地区特定的样式表,或根据规则加载样式表,例如与国家/地区同名的样式表(以下代码未经测试):
我通常会建议为每个国家/主题使用不同的布局页面,因为它可以为您提供更多控制。本质上,您可以将上述逻辑移至 _ViewStart.cshtml 中,并根据当前国家/地区设置布局。
You should define a global css file for common styles. Assuming you have some kind of helper method for accessing the current country, you can conditionally load the country specific stylesheet, or load a stylesheet based on a rule e.g. stylesheet with the same name as the country (following code is untested):
I would generally recommend using a different layout page for each country/theme as it gives you much more control. Essentially you would move the above logic into _ViewStart.cshtml and set the Layout based on the current country.
不确定这是否是最好的方法,但这就是我正在做的。我有一个与此类似的文件夹结构:
然后,我使用帮助程序扩展返回正确的路径,例如图像的路径:
其中
主题文件夹中的图像与默认文件夹中的图像具有相同的名称。样式表也是如此。
Not sure if this is the best approach but this is what I am doing. I have a folder structure similar to this:
Then I use Helper Extensions to return the correct path for example for an image:
where
Images in the theme folders have the same name as in the default folder. Same thing for stylesheets.