일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 주신영
- 황광진
- 스마트폰
- windows mobile 6.5
- 윈도데브
- 소년포비소프트
- 실버라이트 코리아
- 윈도우폰
- 신동혁
- 김춘배
- 신석현
- winmodev
- 거제도
- 루나네스
- 소년포비
- 윈도우모바일
- 안드로이드
- 쉐어포인트코리아
- 윈모데브
- 마이크로소프트
- 데브피아
- 훈스닷넷
- UX베이커리
- 옴니아2
- 윈도우폰7
- 지승욱
- 윈도우 모바일
- 서진호
- MIX10
- 헤이맨
- Today
- Total
목록전체 글 (396)
소년포비의 세계정복!!
for (int i = 0; i < DataGrid1.Items.Count; i++) { cMail = (CehckBox) DataGrid1.Items[1].FindControl("ChkMail"); if (cMail.Checked == true) { name = DataGrid1.Items[i].Cells[1].Text; .... } }
인증 여부 User.Identity.IsAuthenticated 인증된 아이디 User.Identity.Name 로그아웃 FormsAuthentication.SignOut (); 로그인 FormsAuthentication.SetAuthCookie (id, false); 로그인 후 페이지 이동 FormsAuthentication.RedirectFromLoginPage (id, false); using System.Web.Security;
Web.Config 에다가 <authentication mode="Forms"> <forms name = ".AUTHCOOKIE" loginUrl = "Login.aspx" protection = "All" /> </authentication> <authorization> <deny users="?" /> </authorization> 추가후 </system.web> 끝나는 부분에 각 디렉토리 마다 설정을 할수 있다 <location path = "Default.apsx"> <system.web> <author..
<?xml version="1.0" encoding="ks_c_5601-1987"?> <configuration> <system.web> <httpRuntime executionTimeout="90" maxRequestLength="1048576" useFullyQualifiedRedirectUrl="false" /> </system.web> </configuration> Web.Config 파일을 열어서 maxRequestLength 를 설정해 주면 됩니다. 단위는 byte입니다.
string strDir = @"D:\MyTemp"; string strSubDir = "Sub"; DirectoryInfo DirInfo = new DirectoryInfo (strDir); if (DirInfo.Exists) { // 디렉토리 삭제 Directory.Delete (strDir, true); MessageBox.Show ("디렉토리 삭제", "알림"); } else { // 디렉토리 생성 DirInfo = Directory.CreateDirectory (strDir); // 서브 디렉토리 생성 DirInfo.CreateSubdirectory (strSubDir); MessageBox.S..
using (Bitmap bmp = new Bitmap (@"C:\Documents and Settings\purred\My Documents\My Pictures\20040613-022147.jpg")) { // 이미지 회전 bmp.RotateFlip (RotateFlipType.Rotate180FlipNone); // 이미지 대칭 bmp.RotateFlip (RotateFlipType.RotateNoneFlipX); Graphics g = e.Graphics; g.DrawImage (bmp as Image, new PointF (0, 0)); }