朋友用的网奇eshop5.1弄的一个asp.net的网店,让我帮他仿站做模板,其实我很久没弄过asp.net了,转行php了,里面调用数据基本都是用的<%=wqshop.WebUtils.GetX(各种参数)%>,我转到定义wqshop不存在,webutils内容是
using System;
using XpShop.Utility;namespace wqshop
{
    public class WebUtils
    {
        public WebUtils();        public static MemberDetails CurrentUser { get; }        public static ADDetails ADInfo(int adID);
        public static string CloseWindow();
        public static string GetAD(int adID);
        public static string GetDefaultLanguage();
        public static string GetHelp(string compart);
        public static string GetNews(int categoryID, int topNumber, int tlen, string image, string order, string sort);
        public static string GetNewsImage(int categoryID);
        public static string GetString(string name);
        public static string ProductNum(string categoryID);
        public static string Redirect(string url);
        public static string RedirectParent(string url);
        public static void SendEMail(string to, string subject, string body);
        public static void SendErrorEMail(string body);
        public static void SendFeedbackEMail(string to, string subject, string body);
        public static string ShowMsg(string msg);
    }
}竟然是元数据的,整套系统找不到一个cs结尾的文件,呵呵,我是asp.net菜鸟,那位大哥告诉下那些Get方法在哪放着呢???