我正在尝试使用asp.net MVC开发一个多语言网站,它应该自动识别客户的国家,然后用他们的语言显示网站。
我可以获得IP地址,但我找不到他们的国家。我使用了一个Web服务
这是我的控制器
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Web;
using System.Web.Mvc;
using System.Globalization;
using global_vrf.GeoIpService;
namespace global_vrf.Controllers
{
public class HomeController : Controller
{
public ActionResult Index(string language)
{
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(language);
Thread.CurrentThread.CurrentUICulture = new CultureInfo(language);
string userIpAddress = this.Request.UserHostAddress;
ViewBag.userIpAddress = userIpAddress;
GeoIPService service = new GeoIPService();
GeoIP output = service.GetGeoIP(userIpAddress);
ViewBag.usercountry = output;
return View();
}
}
}
我已经在我看来写这个来检查发生了什么
@{
ViewBag.Title = "Home Page";
}
@Resources.Home_txt.AppDes
<br />
@ViewBag.userIpAddress
<br />
@ViewBag.usercountry
这是输出:
93.110.112.199
global_vrf.GeoIpService.GeoIP //this line is showing instead of country name.
感谢任何帮助。 感谢
答案 0 :(得分:1)
请使用geoipresult,然后获取国家/地区名称
<GetGeoIPResult>
<CountryName>string</CountryName>
<CountryCode>string</CountryCode>
</GetGeoIPResult>
答案 1 :(得分:1)
如果@ViewBag.userCountry
正在输出global_vrf.GeoIpService.GeoIP
,那么这意味着您正在为ViewBag
成员投放的内容的类型且该类型没有自定义ToString
重载。当呈现任何给定类型进行渲染时,Razor将简单地在其上调用ToString
,以获得实际输出的内容。 ToString
的默认值是返回类型名称和名称空间。
更有可能的是,你想做类似的事情:
@{ var userCountry = ViewBag.userCountry as global_vrf.GeoIpService.GeoIP; }
@if (userCountry != null)
{
@userCountry.Country;
}
其中Country
是global_vrf.GeoIpService.GeoIP
上实际包含您要查看输出的国家/地区名称的属性。