로봇물고기, 잠수함 닮았네 | Daum 미디어다음
로봇물고기, 잠수함 닮았네 | Daum 미디어다음.
로봇물고기, 잠수함 닮았네 | Daum 미디어다음.
1. 데이터 연결 속성에 SQL Native Client 만 있는 경우 (로컬컴에 sqlncli.msi 설치시) 여러버전 있음 다운로드 : https://support.microsoft.com/en-us/help/2726013/download-information-about-the-sql-server-native-client-drivers-that-a PROVIDER=MSDASQL;driver={SQL Native Client};server=1.222.333.444;uid=myID;pwd=myPassword;database=myDB 2. 데이터 연결 속성에 Native […]
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 32 33 34 35 36 |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml; using System.Xml.Xsl; using System.Xml.XPath; using System.IO; namespace ConsoleXSLTest { class Program { static void Main(string[] args) { XmlDocument docXml = new XmlDocument(); XslCompiledTransform xslt = new XslCompiledTransform(); StringWriter stringWriter = new StringWriter(); string sDPW8 = Path.GetFileName(“DPW8.xml”); xslt.Load(Path.GetFileName(“DPW8.xsl”)); docXml = new XmlDocument(); docXml.PreserveWhitespace = false; docXml.LoadXml(sDPW8); xslt.Transform(docXml, null, stringWriter); docXml.LoadXml(stringWriter.ToString()); Console.WriteLine(docXml.OuterXml); } } } |
바로 가기 Learn to code | Codecademy. 사실 이런 코딩 사교육은 미국에서 일고 있는 거대한 코딩 열기에 비하면 곁가지에 불과하다. 무료로 코딩을 가르쳐주는 사이트 코드카데미(Codecademy.com)에서는 지난해 […]
토요일 오후 미국 캘리포니아의 스탠포드대학교내 야외카페. 여덟 살짜리 백인 소년이 과외수업을 받고 있다. 한국인 컴퓨터 프로그램 개발자인 박모씨로부터 아이폰용 앱 개발을 위한 코딩을 배우고 있는 […]
최근 과외현상은 외국어에서 프로그래밍 언어로 바뀌고 있다. :: Air Supply. 미국에서는 현재 최고의 유망직업이 SW엔지니어 ~~~
via 새해 프로그래밍 언어 배우기 열풍 : IT : 경제 : 뉴스 : 한겨레. 러시코프는 “기업 인수 때 코드를 이해하는 개발자 1명당 가치가 50만~100만달러로 평가되고 […]
Namespace nodes, child nodes, and attributes of the current node are automatically copied as well!
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 32 33 34 35 36 37 38 39 40 41 42 43 44 |
<xsl:copy-of select="expression"/> <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:variable name="header"> <tr> <th>Element</th> <th>Description</th> </tr> </xsl:variable> <xsl:template match="/"> <html> <body> <table> <xsl:copy-of select="$header" /> <xsl:for-each select="reference/record"> <tr> <xsl:if test="category='XML'"> <td><xsl:value-of select="element"/></td> <td><xsl:value-of select="description"/></td> </xsl:if> </tr> </xsl:for-each> </table> <br /> <table> <xsl:copy-of select="$header" /> <xsl:for-each select="table/record"> <tr> <xsl:if test="category='XSL'"> <td><xsl:value-of select="element"/></td> <td><xsl:value-of select="description"/></td> </xsl:if> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> |
소스 다운로드 : rollingbanner
Copyright © 2024 | WordPress Theme by MH Themes