{"id":291,"date":"2010-09-27T00:57:41","date_gmt":"2010-09-26T22:57:41","guid":{"rendered":"http:\/\/www.fethimurat.com\/blog\/?p=291"},"modified":"2017-04-16T17:14:55","modified_gmt":"2017-04-16T14:14:55","slug":"xml-kaydetme-silme-guncelleme","status":"publish","type":"post","link":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/","title":{"rendered":"XML Kaydetme Silme G\u00fcncelleme"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" src=\"\/photos\/TextReaderWriter\/form.png\" alt=\"\" width=\"163\" height=\"734\" \/><img loading=\"lazy\" decoding=\"async\" src=\"\/photos\/TextReaderWriter\/personeller.png\" alt=\"\" width=\"163\" height=\"205\" \/><img loading=\"lazy\" decoding=\"async\" src=\"\/photos\/TextReaderWriter\/formdesign.png\" alt=\"\" width=\"359\" height=\"292\" \/><\/p>\n<p><!--more--><\/p>\n<p><a href=\"http:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/XmlTextReaderWriter.zip\">Dosyay\u0131 buradan indirebilirsiniz.<\/a><\/p>\n<p>Personeller.cs<\/p>\n<pre class=\"brush:as3\">using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\n\r\nnamespace XmlTextReaderWriter\r\n{\r\n    class Personeller\r\n    {\r\n        public string Ad { get; set; }\r\n        public string Soyad { get; set; }\r\n        public decimal Maas { get; set; }\r\n\r\n        public override string ToString()\r\n        {\r\n            return this.Ad + \" \" + this.Soyad;\r\n        }\r\n    }\r\n}<\/pre>\n<p>Form1.cs<\/p>\n<pre class=\"brush:as3\">using System;\r\nusing System.Collections.Generic;\r\nusing System.ComponentModel;\r\nusing System.Data;\r\nusing System.Drawing;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing System.Windows.Forms;\r\nusing System.Xml;\r\nusing System.IO;\/\/xmltextreader xmltextwriter nesneleri i\u00e7in\r\n\r\nnamespace XmlTextReaderWriter\r\n{\r\n    public partial class Form1 : Form\r\n    {\r\n        public Form1()\r\n        {\r\n            InitializeComponent();\r\n        }\r\n\r\n        List&lt;Personeller&gt; liste = new List&lt;Personeller&gt;();\r\n        const string dosya = \"..\\\\..\\\\veriler.xml\";\r\n        bool guncellemeMi = false;\r\n        int seciliindeks;\r\n        int secilikaydet;\r\n\r\n        private void Form1_Load(object sender, EventArgs e)\r\n        {\r\n            if (File.Exists(dosya))\r\n            {\r\n                DosyadanGetir(liste);\r\n            }\r\n        }\r\n\r\n        private void DosyadanGetir(List&lt;Personeller&gt; liste)\r\n        {\r\n            lstPersoneller.Items.Clear();\r\n            XmlTextReader okuyucu = new XmlTextReader(dosya);\r\n\r\n            while (okuyucu.Read())\r\n            {\r\n                if (okuyucu.NodeType != XmlNodeType.Element) continue;\r\n                Personeller p = new Personeller();\r\n\r\n                okuyucu.ReadToFollowing(\"Ad\");\r\n                p.Ad = okuyucu.ReadInnerXml();\r\n\r\n                okuyucu.ReadToFollowing(\"Soyad\");\r\n                p.Soyad = okuyucu.ReadInnerXml();\r\n\r\n                okuyucu.ReadToFollowing(\"Maas\");\r\n                p.Maas = decimal.Parse(okuyucu.ReadInnerXml());\r\n                liste.Add(p);\r\n                lstPersoneller.Items.Add(p);\r\n            }\r\n            okuyucu.Close();\r\n        }\r\n\r\n        private void btnKaydet_Click(object sender, EventArgs e)\r\n        {\r\n            if (guncellemeMi == false)\r\n            {\r\n                Personeller p = new Personeller();\r\n                p.Ad = txtAd.Text;\r\n                p.Soyad = txtSoyad.Text;\r\n                p.Maas = nudMaas.Value;\r\n\r\n                liste.Add(p);\r\n                lstPersoneller.Items.Add(p);\r\n\r\n                lblAciklama.Text = p.Ad + \" \" + p.Soyad + \" kaydedildi..\";\r\n                \/\/vazge\u00e7mi\u015f gibi \u00e7al\u0131\u015f\r\n                btnVazgec.PerformClick();\r\n\r\n            }\r\n            else\r\n            {\r\n                liste.RemoveAt(seciliindeks);\r\n                guncellemeMi = false;\r\n\r\n                Personeller p = new Personeller();\r\n                p.Ad = txtAd.Text;\r\n                p.Soyad = txtSoyad.Text;\r\n                p.Maas = nudMaas.Value;\r\n\r\n                liste.Insert((seciliindeks), p);\r\n                lstPersoneller.Items.Clear();\r\n                lstPersoneller.Items.AddRange(liste.ToArray());\r\n            }\r\n        }\r\n\r\n        private void btnVazgec_Click(object sender, EventArgs e)\r\n        {\r\n            txtSoyad.Clear();\r\n            txtAd.Clear();\r\n            nudMaas.Value = 0;\r\n            txtAd.Focus();\/\/imle\u00e7 txtAd da beklesin\r\n        }\r\n\r\n        private void btnYazdir_Click(object sender, EventArgs e)\r\n        {\r\n            XmlTextWriter yazici = new XmlTextWriter(dosya, Encoding.Unicode);\r\n\r\n            yazici.Formatting = Formatting.Indented;\r\n            yazici.Indentation = 3;\r\n\r\n            yazici.WriteStartDocument();\/\/&lt;?xml version=\"1.0\" ?&gt; k\u0131sm\u0131n\u0131 yazduk\r\n            \/\/root element ya da DocumentElement\r\n            yazici.WriteStartElement(\"Personeller\");\r\n            foreach (Personeller item in liste)\r\n            {\r\n                yazici.WriteStartElement(\"Personel\");\r\n                yazici.WriteElementString(\"Ad\", item.Ad);\r\n                yazici.WriteElementString(\"Soyad\", item.Soyad);\r\n                yazici.WriteElementString(\"Maas\", item.Maas.ToString());\r\n                yazici.WriteEndElement();\r\n            }\r\n            yazici.WriteEndElement();\r\n            yazici.WriteEndDocument();\r\n            yazici.Close();\r\n            \/\/MessageBox.Show(\"Dosya kaydedildi...\");\r\n            lblAciklama.Text = \"Dosya kaydedildi\";\r\n\r\n        }\r\n\r\n        private void btnOku_Click(object sender, EventArgs e)\r\n        {\r\n            liste.Clear();\r\n            lstPersoneller.Items.Clear();\r\n            DosyadanGetir(liste);\r\n        }\r\n\r\n        private void button1_Click(object sender, EventArgs e)\r\n        {\r\n            int secilenindeks = lstPersoneller.SelectedIndex;\r\n            if (secilenindeks &lt; 0) return;\r\n            lstPersoneller.Items.RemoveAt(secilenindeks);\r\n            liste.RemoveAt(secilenindeks);\r\n\r\n            lblAciklama.Text = \"Kay\u0131t Silinmi\u015ftir.\";\r\n            \/\/MessageBox.Show(\"Kay\u0131t silinmi\u015ftir\");\r\n            btnYazdir.PerformClick();\r\n        }\r\n\r\n        private void button2_Click(object sender, EventArgs e)\r\n        {\r\n            guncellemeMi = true;\r\n            seciliindeks = lstPersoneller.SelectedIndex;\r\n            if (seciliindeks &lt; 0) return;\r\n            \/\/lstPersoneller.Items.RemoveAt(seciliindeks);\r\n            \/\/liste.RemoveAt(seciliindeks);\r\n            txtAd.Text = Convert.ToString(liste[Convert.ToInt32(seciliindeks)].Ad);\r\n            txtSoyad.Text = Convert.ToString(liste[Convert.ToInt32(seciliindeks)].Soyad);\r\n            nudMaas.Value = liste[seciliindeks].Maas;\r\n        }\r\n    }\r\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":14,"featured_media":454,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[68],"tags":[99,72,74,73],"class_list":["post-291","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-xml","tag-xml","tag-xml-guncelleme","tag-xml-kaydetme","tag-xml-silme","comments-off"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>XML Kaydetme Silme G\u00fcncelleme | F.Murat ALTINI\u015eIK<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"XML Kaydetme Silme G\u00fcncelleme | F.Murat ALTINI\u015eIK\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/\" \/>\n<meta property=\"og:site_name\" content=\"F.Murat ALTINI\u015eIK\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/muratfethi\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/muratfethi\" \/>\n<meta property=\"article:published_time\" content=\"2010-09-26T22:57:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-16T14:14:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png\" \/>\n\t<meta property=\"og:image:width\" content=\"576\" \/>\n\t<meta property=\"og:image:height\" content=\"381\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"F.Murat ALTINI\u015eIK\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@muratfethi\" \/>\n<meta name=\"twitter:site\" content=\"@muratfethi\" \/>\n<meta name=\"twitter:label1\" content=\"Yazan:\" \/>\n\t<meta name=\"twitter:data1\" content=\"F.Murat ALTINI\u015eIK\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/\"},\"author\":{\"name\":\"F.Murat ALTINI\u015eIK\",\"@id\":\"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/c4b1061d019bd9186e04c11b1094faa2\"},\"headline\":\"XML Kaydetme Silme G\u00fcncelleme\",\"datePublished\":\"2010-09-26T22:57:41+00:00\",\"dateModified\":\"2017-04-16T14:14:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/\"},\"wordCount\":12,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/c4b1061d019bd9186e04c11b1094faa2\"},\"image\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png\",\"keywords\":[\"XML\",\"XML G\u00fcncelleme\",\"XML Kaydetme\",\"XML Silme\"],\"articleSection\":[\"XML\"],\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/\",\"url\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/\",\"name\":\"XML Kaydetme Silme G\u00fcncelleme | F.Murat ALTINI\u015eIK\",\"isPartOf\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png\",\"datePublished\":\"2010-09-26T22:57:41+00:00\",\"dateModified\":\"2017-04-16T14:14:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#primaryimage\",\"url\":\"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png\",\"contentUrl\":\"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png\",\"width\":576,\"height\":381},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ana sayfa\",\"item\":\"https:\/\/www.fethimurat.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"XML Kaydetme Silme G\u00fcncelleme\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.fethimurat.com\/blog\/#website\",\"url\":\"https:\/\/www.fethimurat.com\/blog\/\",\"name\":\"F.Murat ALTINI\u015eIK\",\"description\":\"HTML | PHP | C# | SQL | ASP.net | Bitcoin\",\"publisher\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/c4b1061d019bd9186e04c11b1094faa2\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.fethimurat.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/c4b1061d019bd9186e04c11b1094faa2\",\"name\":\"F.Murat ALTINI\u015eIK\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2018\/01\/xxx-150x150.jpg\",\"contentUrl\":\"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2018\/01\/xxx-150x150.jpg\",\"caption\":\"F.Murat ALTINI\u015eIK\"},\"logo\":{\"@id\":\"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"1973 yilinda Balikesir\u2019de dogdum. Ilkokulu Gazi (Ilk\u00f6gretim) Ilk Okulu, Orta okulu ise Karesi Ortaokulunda okudum. Orta okulda merak sardigim elektronige nihayet elektronik b\u00f6l\u00fcm\u00fcn\u00fc kazanarak dijital elektronik ile giris yaptim. Bilgisayar hobim o zamanlarda herkes gibi Commadore 64'lerle baslayip Amigalar ile devam etti.Amat\u00f6r olarak Clipper programciligi yaptim. Donanim ve network konularinda uzmanlasmaya \u00e7alistim. Webtasarim ile ilgili konularda yaptigim \u00e7alismalardan sonra yazilim olan merakim daha da arti, su an c# ve sql \u00fczerindeki \u00e7alismalarim devam etmektedir. UZMANLIK: - MS Ofis Programlari - Adobe Photoshop - Macromedia Flash, Macromedia Dreamweaver - MS Visual Studio - MSSQL, MYSQL - WAN\/LAN , TCP\/IP, DNS, DHCP , VPN - Active Directory tasarim, kurulum ve y\u00f6netim teknikleri - ISA Server - Windows Server\",\"sameAs\":[\"http:\/\/www.fethimurat.com\",\"https:\/\/www.facebook.com\/muratfethi\",\"https:\/\/www.instagram.com\/muratfethi\/\",\"https:\/\/www.linkedin.com\/in\/murat-altiniik-24119a13a\/\",\"https:\/\/x.com\/muratfethi\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"XML Kaydetme Silme G\u00fcncelleme | F.Murat ALTINI\u015eIK","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/","og_locale":"tr_TR","og_type":"article","og_title":"XML Kaydetme Silme G\u00fcncelleme | F.Murat ALTINI\u015eIK","og_url":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/","og_site_name":"F.Murat ALTINI\u015eIK","article_publisher":"https:\/\/www.facebook.com\/muratfethi","article_author":"https:\/\/www.facebook.com\/muratfethi","article_published_time":"2010-09-26T22:57:41+00:00","article_modified_time":"2017-04-16T14:14:55+00:00","og_image":[{"width":576,"height":381,"url":"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png","type":"image\/png"}],"author":"F.Murat ALTINI\u015eIK","twitter_card":"summary_large_image","twitter_creator":"@muratfethi","twitter_site":"@muratfethi","twitter_misc":{"Yazan:":"F.Murat ALTINI\u015eIK","Tahmini okuma s\u00fcresi":"2 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#article","isPartOf":{"@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/"},"author":{"name":"F.Murat ALTINI\u015eIK","@id":"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/c4b1061d019bd9186e04c11b1094faa2"},"headline":"XML Kaydetme Silme G\u00fcncelleme","datePublished":"2010-09-26T22:57:41+00:00","dateModified":"2017-04-16T14:14:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/"},"wordCount":12,"commentCount":1,"publisher":{"@id":"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/c4b1061d019bd9186e04c11b1094faa2"},"image":{"@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png","keywords":["XML","XML G\u00fcncelleme","XML Kaydetme","XML Silme"],"articleSection":["XML"],"inLanguage":"tr","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/","url":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/","name":"XML Kaydetme Silme G\u00fcncelleme | F.Murat ALTINI\u015eIK","isPartOf":{"@id":"https:\/\/www.fethimurat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#primaryimage"},"image":{"@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png","datePublished":"2010-09-26T22:57:41+00:00","dateModified":"2017-04-16T14:14:55+00:00","breadcrumb":{"@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#primaryimage","url":"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png","contentUrl":"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2010\/09\/4.png","width":576,"height":381},{"@type":"BreadcrumbList","@id":"https:\/\/www.fethimurat.com\/blog\/xml-kaydetme-silme-guncelleme\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ana sayfa","item":"https:\/\/www.fethimurat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"XML Kaydetme Silme G\u00fcncelleme"}]},{"@type":"WebSite","@id":"https:\/\/www.fethimurat.com\/blog\/#website","url":"https:\/\/www.fethimurat.com\/blog\/","name":"F.Murat ALTINI\u015eIK","description":"HTML | PHP | C# | SQL | ASP.net | Bitcoin","publisher":{"@id":"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/c4b1061d019bd9186e04c11b1094faa2"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fethimurat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":["Person","Organization"],"@id":"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/c4b1061d019bd9186e04c11b1094faa2","name":"F.Murat ALTINI\u015eIK","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2018\/01\/xxx-150x150.jpg","contentUrl":"https:\/\/www.fethimurat.com\/blog\/wp-content\/uploads\/2018\/01\/xxx-150x150.jpg","caption":"F.Murat ALTINI\u015eIK"},"logo":{"@id":"https:\/\/www.fethimurat.com\/blog\/#\/schema\/person\/image\/"},"description":"1973 yilinda Balikesir\u2019de dogdum. Ilkokulu Gazi (Ilk\u00f6gretim) Ilk Okulu, Orta okulu ise Karesi Ortaokulunda okudum. Orta okulda merak sardigim elektronige nihayet elektronik b\u00f6l\u00fcm\u00fcn\u00fc kazanarak dijital elektronik ile giris yaptim. Bilgisayar hobim o zamanlarda herkes gibi Commadore 64'lerle baslayip Amigalar ile devam etti.Amat\u00f6r olarak Clipper programciligi yaptim. Donanim ve network konularinda uzmanlasmaya \u00e7alistim. Webtasarim ile ilgili konularda yaptigim \u00e7alismalardan sonra yazilim olan merakim daha da arti, su an c# ve sql \u00fczerindeki \u00e7alismalarim devam etmektedir. UZMANLIK: - MS Ofis Programlari - Adobe Photoshop - Macromedia Flash, Macromedia Dreamweaver - MS Visual Studio - MSSQL, MYSQL - WAN\/LAN , TCP\/IP, DNS, DHCP , VPN - Active Directory tasarim, kurulum ve y\u00f6netim teknikleri - ISA Server - Windows Server","sameAs":["http:\/\/www.fethimurat.com","https:\/\/www.facebook.com\/muratfethi","https:\/\/www.instagram.com\/muratfethi\/","https:\/\/www.linkedin.com\/in\/murat-altiniik-24119a13a\/","https:\/\/x.com\/muratfethi"]}]}},"_links":{"self":[{"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/posts\/291","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/comments?post=291"}],"version-history":[{"count":0,"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/posts\/291\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/media\/454"}],"wp:attachment":[{"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/media?parent=291"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/categories?post=291"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fethimurat.com\/blog\/wp-json\/wp\/v2\/tags?post=291"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}