일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 윈도우폰7
- 윈도우폰
- 소년포비소프트
- 옴니아2
- MIX10
- 신동혁
- 헤이맨
- 지승욱
- 김춘배
- 스마트폰
- 마이크로소프트
- 신석현
- 거제도
- 데브피아
- 소년포비
- 훈스닷넷
- 서진호
- 윈모데브
- 실버라이트 코리아
- 윈도데브
- UX베이커리
- windows mobile 6.5
- 윈도우 모바일
- 황광진
- 윈도우모바일
- 쉐어포인트코리아
- 주신영
- 안드로이드
- 루나네스
- winmodev
- Today
- Total
목록프로그램 세상 (207)
소년포비의 세계정복!!
ㆍ .NET Framework 2.0 부터 3.5 까지 살펴보고 최적의 어플리케이션을 개발할 수 있는 방법 심화 학습 ㆍ 사용자의 눈높이를 맞추기 위한 WPF ㆍ 이기종간의 통신 방법을 단일화 한 WCF ㆍ 간결한 비즈니스 정의 방법을 제공하는 WF ㆍ RIA(Rich Internet Application) 제작을 위한 Silverlight 학습 과 정 명 Implementing .NET Fr..
※ SHOW 앱스토어 Pre 사이트에 방문하시면 보다 많은 정보를 확인하실 수 있습니다. http://www.show.co.kr/sbrand2/showapps/pre/devedu.asp
DevRay 스터디 그룹을 모집합니다. 자세한 내용 보기: http://www.devpia.com/Maeul/Contents/Detail.aspx?BoardID=216&MAEULNo=8&no=1204&ref=1204 스터디 모집 양식: http://spreadsheets.google.com/viewform?hl=en&formkey=dGpKS3A5Y0tZMkU5ZFltaXp0MHRaQVE6MA 스터디스터디 의견 수렴: http://spreadsheets.google.com/viewform?hl=en&formkey=dEpoT1VKa2J5ZFRxTDVjcnYwY2xTTUE6MA
응용 프로그램의 중복 실행을 방지시키는 소스 입니다. static void Main() { System.Diagnostics.Process[] myProc = System.Diagnostics.Process.GetProcessesByName("WindowsApplication10"); // 여기서 Mulpumi는 프로젝트 속성의 프로젝트 이름 if(myProc.Length < 2) { Application.Run(new Form1()); } else { MessageBox.Show("이미 실행중입니다."); Application.E..
if (Request.UrlReferrer == null) { Response.Redirect ("list.aspx"); } else { string refer = Request.UrlReferrer.ToString (); string ServerPath = Request.Url.ToString (); ServerPath = ServerPath.Substring (0, ServerPath.LastIndexOf ("/")); if (refer.IndexOf (ServerPath) == -1) Response.Redirect ("list.aspx"); }
private string GetUniqueFileNameWithPath (string dirPath, string fileN) { string fileName = fileN; int indexOfDot = fileName.LastIndexOf ("."); string strName = fileName.Substring (0, indexOfDot); string strExt = fileName.Substring (indexOfDot + 1); bool bExist = true; int fileCount = 0; while (bExist) { if (File.Exists (Path.Combine (dirPath, fileName))) { fileCount++; fileName = strName + "("..
SqlCommection Con = new SqlConnection (); Con.ConnectionString = "server=(local); database=Pubs ..."; Con.Open (); SqlTransaction trans = Con.BeginTracsaction (); SqlCommand Cmd = new SqlCommand (); Com.Connection = Con; Cmd.Transaction = trans; try { string Sql; 처리 로직 trans.Commit (); } catch (Exception ex) { trans.Rollback (); } finally { Con.Close (); }
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..