Object to Json String C# C.GULDOGAN 6:53 AM Generally for logging purposes I'm need to convert object to Json sting. It is very helpful to keep track of incoming or outgoing obje... Read More
XML to Object and Object To Xml in C# C.GULDOGAN 1:12 AM By using DeserializeObject method you can generate an object, and by using SerializeObject method you can generate an xml string of that ... Read More
Assign value of property using by property name in C# C.GULDOGAN 12:50 AMC# you can assign property value by using its name example : Don't for get to add using System.Reflection ; xItem.xInformation.x... Read More
Eval and String split usage C.GULDOGAN 5:24 AMToday I was having trouble to split data item in grid like this post. Problem is Split Method wants an argument which is char and the syn... Read More
Set Width for TemplateField C.GULDOGAN 1:10 AMTo set width for TemplateField in Asp.net you can use HeaderStyle like code below. <asp:TemplateField HeaderText="Select Operatio... Read More
Get Session in Static WebMethod C.GULDOGAN 11:39 PMHi, One of my project I need to use a Static WebMethod to set session . But the compiler gives me an error like. An object reference i... Read More
How to display all errors on page Asp.net MVC3 C.GULDOGAN 6:18 AM You may need to display all errors on page when your model state is not valid. In Asp.net MVC3 we can use ModelState property ... Read More
numeric textbox c# C.GULDOGAN 4:21 PMnumeric textbox c# is very important issue if you deal with numbers in your program. I was looking for a simple solution for numeric textb... Read More
Copy (Get) selected text in Web Browser control (MSHTML) C.GULDOGAN 9:07 AM It is possible to get / copy selected text in web browser control you should use MSHTML . You have to add Microsoft.mshtml in your Refe... Read More
Missing user defined context menu in WebBrowser Control C.GULDOGAN 9:21 AMI faced with a problem while i was tring to assign a context menu in WebBrowser control . Before using navigate method of the control, I ... Read More
Stop Script Error Popup In WebBrowser Control C.GULDOGAN 11:01 AMScript Error Popup in WebBrowser control is very bad for users and also for developers. To stop JavaScript script error popup in your ... Read More
Create Dynamic Controls and Dynamic Events C.GULDOGAN 1:02 PMHow to dynamically Create Controls (Buttons,TextBoxes,Labels) and binding events to them .. PS: You can find code http://snipt.org/op... Read More
DataGridView Change Row Color - Satır rengini değiştirme C.GULDOGAN 3:10 PM DataGridView'de bir satırda bulunan bir hücrenin değerine göre satırın rengini değiştirmek istiyoruzdiyelim.. Öncelikle bir make_re... Read More
C#'da formlar arası veri transferi... C.GULDOGAN 3:22 PMC#'da formlar arasında veri transferini sağlamak çok kolay bir işlem.. Olay: Şimdi elimizde Form1 ve Form2 olsun.. Form1'de bir buto... Read More
TRY ve CATCH C.GULDOGAN 5:13 PMTry ve Catch visual bir dil olan c# ın olmazsa olmazı aslında.. Ne işe yarar ne yapar.. Console application yazan arkadaşlar sıkça programın... Read More
Datagridview Kullanımı C.GULDOGAN 4:41 PMDaha önceki yazımda database'i projemize ekledik.. Şimdi bir form application da database'imizdeki verileri nasıl çekeceğiz ve kulla... Read More
c# ile data base bağlantısı C.GULDOGAN 4:12 PMC# ile data base e bağlanmak aslında çok kolay.. Aşağıda resimler le anlatıyorum.. 1- DATA > ADD DATA SOURCE 2- Açılan Pencereden DATABAS... Read More