[MOSS] 쿠키 사용하기
private void SetCookies() { SPUser currentU = SPContext.Current.Web.CurrentUser; //쿠키에 사용할 현재 유저값 HttpCookie cookie = new HttpCookie("UCookie"); //쿠키의 이름을 준다. // 파일이름으로 사용하기위해 현재유저 Domain\administrator 를 Domain_administrator 변경 string s_cu = currentU.ToString().Replace("\\", "_"); //쿠키의 값을 넣어 준다. cookie.Value = @"http://moss/ClientBin/" + "Stored_Picture_" + s_cu + ".xml"; //쿠키를 더해 준다. this.Cont..
MOSS
2008. 7. 1. 12:17