예제 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (HttpContext.Current.Session["usercd"] != null)
     {
         int userCd = (int)HttpContext.Current.Session["usercd"];
         LogUtil.Write(LogUtil.LogType.Debug, "webImageHistory", "Page_Load", "START [" + userCd.ToString() + "]");
         CommonWebServiceProc.GetImage(userCd, ConfigUtil._HistoryImageViewPath);
     }
     else
     {
         LogUtil.Write(LogUtil.LogType.Error, "webImageHistory", "Page_Load", "セッションからのユ\u30fcザ\u30fcコ\u30fcドが取得出来ません。");
     }
 }
예제 #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     CommonWebServiceProc.GetImage();
 }