전체 글 썸네일형 리스트형 combobox.SelectdItem 문자열 정상적으로 가져오기 string idcount = ((ComboBoxItem) MainWindow.s_main.combobox_idcount.SelectedItem).Content.ToString(); 더보기 c#, WPF 내 나름대로의 재귀호출 public static string s_importjson() { try { string json = ""; string _url; using ( WebClient wc1 = new WebClient() ) { string _url1 = "http://localhost/test.txt"; wc1.Encoding = Encoding.UTF8; //TODO: API - 서버에 전송 json = wc1.DownloadString(_url1); return json; } } catch ( Exception ex ) { //메세지출력 } return ""; } public static void s_roundimpo( string msg ) { try { string textValue = s_importjson(.. 더보기 MSsql 버젼 확인 쿼리 select @@version select serverproperty('Productversion') 더보기 HTML파일 안에서 ASP소스가 작동되게 IIS (인터넷 정보 서비스)관리자 에서 처리기매핑 을 선택 스크립트 매핑 추가 클릭 실행파일(E)에 %windir%\system32\inetsrv\asp.dll 를 입력 입력하고 HTML 소스안에 ASP 코드를 작성해서 넣으면 HTML안의 ASP 소스를 실앻한다. 더보기 Bootstrap studio 에 원하는 기능 더보기 asp에서 입력 받은 값을 처리 index.asp 더보기 ASP.NET Core Mvc cshtml로 데이터 전달 Controllers/HelloWorldController.cs using System; using System.Collections.Generic; using System.Linq; using System.Text.Encodings.Web; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; namespace daorder.Controllers { public class HelloWorldController : Controller { public IActionResult Index() { return View(); //return "this is my default action..."; } public IActionResult Welcome(s.. 더보기 ASP.NET Core Razor page 권한 부여 [Authorize] public class AccountController : Controller { public ActionResult Login() { } public ActionResult Logout() { } } [Authorize] 로그인 했을 때만 사용 더보기 asp.net core razor 패키지관리자 콘솔 명령어 PM> Add-Migration InitialCreate Build started.. PM> Update-database 더보기 data class 지정방법 [Display(Name = "Release Date")] [DataType(DataType.Date)] public DateTime ReleaseDate { get; set; } [Range(1, 100)] [DataType(DataType.Currency)] public decimal Price { get; set; } [MaxLength(30)] // 30자 내로 입력 [DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)] public DateTime ReleaseDate { get; set; } public class Movie { public int ID { get; set; } [StringLength.. 더보기 이전 1 2 3 4 5 다음