コード例 #1
0
ファイル: WeiXinPage.cs プロジェクト: yi724926089/MyWx
 /// <summary>
 /// 获得版权信息
 /// </summary>
 /// <param name="wid"></param>
 /// <returns></returns>
 public string getwebcopyright(int wid)
 {
     wsiteBll wBll = new wsiteBll();
     Model.wxcodeconfig config= wBll.GetModelByWid(wid, "");
     if (config != null)
     {
         return config.wcopyright;
     }
     else
     {
         return "";
     }
 }
コード例 #2
0
ファイル: WeiXinPage.cs プロジェクト: yi724926089/MyWx
 public Model.wxcodeconfig getwebsiteinfo(int wid)
 {
     wsiteBll wBll = new wsiteBll();
     return wBll.GetModelByWid(wid, "");
 }