Home » Archive by category Blog (Page 25)

HTML5 Mobile App Development Using Intel XDK

원문보기 Intel XDK is the next big thing for HTML5 mobile development after Phonegap. Due to Intel XDK’s huge number of features, developers has started moving from Phonegap to Intel XDK. In this tutorial I will take you through basics of Intel XDK development and its architecture. You...
Continue reading

Getting Started with Intel XDK

원문보기 Mobile development with web technologies is nothing new. Thanks to tools like PhoneGap and Appcelerator Titanium, web developers can create hybrid apps that have access to the device’s hardware. A new solution for HTML5/CSS/JavaScript development is Intel’s XDK. In this article, I’ll tell you why it’s worth giving...
Continue reading

Intel XDK HTML5 cross-platform development tool

Memory maker turned chip maker turned chip maker who also makes a lot of software company Intel has released an updated Intel XDK — an all-in-one HTML5 development environment. Not an SDK, an XDK Intel uses the X to denote cross platform — the DK still means Development...
Continue reading

19.ADO.NET – RowFilter

http://godffs.tistory.com/entry/19ADONET-RowFilter   DataView에 표시할 행을 필터링하는 데 사용하는 식을 사져오거나 설정 데이터 검색시 사용하는 속성 : “CategoryName Like ‘%컴퓨터%'” Connection->Command->DataAdapter->DataSet->DataTable->Dataview->Dataview.RowFilger 속성 FrmRowFilter.aspx <html xmlns=”http://www.w3.org/1999/xhtml”><head runat=”server”>     <title></title> </head> <body>     <form id=”form1″ runat=”server”>     <div>             카테고리명 :         <asp:TextBox ID=”txtSearchQuery” runat=”server”></asp:TextBox>         <asp:Button ID=”btnSearch” runat=”server” Text=”검색”onclick=”btnSearch_Click”...
Continue reading

JavaScriptSerializer 클래스

JavaScriptSerializer 클래스 WinForms, 콘솔, 혹은 WPF 프로그램을 비롯한 .NET Application에서 .NET에 Built-in 된 클래스를 사용해서 간단히 JSON을 사용하려면 JavaScriptSerializer 클래스를 사용할 수 있다. JavaScriptSerializer 클래스는 .NET 3.5 이상에서 사용할 수 있는 클래스로서 System.Web.Extensions.dll 을 참조하여 사용한다. 만약 .NET 버전이 3.5 미만인 경우 JSON.NET를 사용한다. .NET 객체를 JSON 포맷의...
Continue reading

JSON 이란?

JSON 이란? JSON은 JavaScript Object Notation의 약자로서 두 머신 혹은 두 Device 간에 사용되는 데이타 전송 포맷의 한 방식이다. 기존의 XML이 네트워크 전송에서 다소 무거웠던 것에 대한 대안적 방식의 하나로 JSON은 많은 개발자들에게 인기를 끌고 있다. JSON은 Name-Value Pair 포맷 (이름-값이 쌍을 이루는 포맷)을 기본으로 여러 개의 Name-Value...
Continue reading

C# SqlDataReader 클래스

C# SqlDataReader 클래스 SqlDataReader 클래스는 SQL Server와 연결을 유지한 상태에서 한번에 한 레코드(One Row)씩 데이타를 가져오는데 사용된다.SqlCommand.ExecuteReader()로부터 리턴되는 SqlDataReader 객체는 (파일의 BOF와 같이) 첫 Row 이전에 포인터를 위치시키기 때문에 개발자는 SqlDataReader의 Read()메서드를 써서 처음 Row로 이동해 주어야 한다. DataReader는 하나의 Connection에 하나만 Open되어 있어야 하며, 사용이 끝나면 Close()...
Continue reading