Platform
-
-
-
LINQ(Languge INtegrated Query)Platform/DB 2013. 12. 9. 23:50
닷넷 프레임워크 3.5 private void Form1_Load(object sender, EventArgs e) { Con = new SqlConnection(); Con.ConnectionString = "Server=..;database=..;Integrated Security=true"; Adpt = new SqlDataAdapter("SELECT * FROM tblPeople", Con); tblPeople = new DataTable("tblPeople"); Adpt.Fill(tblPeople); var tp = tblPeople.AsEnumerable(); var Q = from p in tp orderby p.Field("Age") select p; foreach (var p in Q) ..
-
-
AjaxPlatform/IPC 2013. 10. 19. 12:59
XMLHttpRequestonreadystatechange .readyState.responseText .open().setRequestHeader().send() function getHTTPObject() {if (window.ActiveXObject) {var waystation = new ActiveXObject("Microsoft.XMLHTTP");} else if (window.XMLHttpRequest) {var waystation = new XMLHttpRequest();} else {var waystation = false;} return waystation;} request = getHTTPObject();request.open("GET", "example.txt", true);requ..
-
자바 스크립트Platform/규격 2013. 9. 25. 00:33
window // Window웹 브라우저 창이나 창 안에 있는 프레임 .window.self.name.frames[].parent.top.location // Location.history // History.document // Document Location.href .reload().replace() History.back().forward() Document.bgColor.forms[].images[] // Image .write() form.elements[]
-