%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<%
string langId = Session["MULT_LANG"] as string;
if (langId == null)
langId = "zh-CN";
switch (langId)
{
case "zh-CN":
%>
<%
break;
case "en":
%>
<%
break;
default:
%>
<%
break;
}
%>