就是我想做的是,用用户控件去继承一个类,可是大家都知道,用户控件能继承类的,所有不知道大家有什么好的办法,比方说我是a.ascx用户控件,如何继承我b.cs里面的这个方法:  
protected void InitializeCulture()
    {
        string currentCulture = (string)Session["Culture"];
        if (string.IsNullOrEmpty(currentCulture))
        {
            currentCulture = "zh-cn";
            Session["Culture"] = "zh-cn";
        }        System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(currentCulture);
        System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture(currentCulture);    }