Category: software.net

  • ASP.NET Menu MouseOver Problem Solution for IE8 and Safari

    If you are using ASP.NET menus which open when you drag the mouse over them, you may experience difficulties in Internet Explorer 8 or Safari. They simply won’t respond to your mouseover action. The workaround for Internet Explorer 8 is simple: Use the compability mode. However; the “solution” has been explained in http://www.daniweb.com/forums/thread244363.html . Here…

  • Convert DataReader to DataTable in C#

    SqlDataReader sdr = comm.ExecuteReader();    DataTable ret = new DataTable();    DataTable schema = sdr.GetSchemaTable(); for (int n = 0; n < schema.Rows.Count; n++) ret.Columns.Add(new DataColumn((String) schema.Rows[n][“ColumnName”], (Type) schema.Rows[n][“DataType”]));    while (sdr.Read()) { DataRow dr = ret.NewRow(); for (int n = 0; n < sdr.FieldCount; n++) dr[n] = sdr.GetValue(n); ret.Rows.Add(dr); }

  • Teknoloji Seçimi – Java vs .NET

    Bir tanıdıktan daha duymuştum ama emin değildim yine de. “Türkiye’de java ile iş yapan çok fazla kurum olmadığından aranan kişiler genelde akademik eğitimi olan kişiler, bu yüzden .net öğren” demişti. Ne kadar doğru bilemem ama her ikisininde birbirine olan benzerliğini düşünürsem ( kitabınızda ki örneklerde fark ettim aslında bu benzerliği ) dediğinizi gibi ikisine de…

  • Login and Download File Programmatically in .NET

    Recently, I was working in a .NET project when I needed to login to a website and download a file programmatically. I was able to call the login page & set the cookies without any problems. However, when I tried to download the file, I got weird messages like “Object moved to…” or “Unable to…

  • Visual Studio 2005 & SAP Bağlantısı

    Bir süredir SAP entegrasyon projelerinde SAP Java Connector kullanıyordum. Bunun sebebi, SAP .NET Connector ‘un Visual Studio 2005 ile çalışmaması ve Vista’da desteklenmemesi; yani SAP tarafından bir kenara bırakılmış bir proje diyebiliriz. Java + SAP Java Connector ile geliştirme yapmak, Visual Studio + SAP .NET Connector ile geliştirme yapmaktan çok daha uzun sürüyor ve daha…

  • Java Mı .NET Mi

    Java ile .NET’in avantaj ve dezavantajlarını Programcılık Mantığı adlı kitabımda karşılaştırmıştım. Bu karşılaştırmanın küçük bir özetini ifade etmek gerekirse; .NET Avantajları: Microsoft işletim sistemlerinde hızlı çalışır Standart tek bir geliştirme aracı vardır ve kullanımı çok rahattır (Visual Studio) Birden fazla dil kullanılabilir (Visual Basic, C#, J#, vs). Microsoft tarafından çoook uzun bir süre desteklenecektir .NET…

  • ASP Unspecified Error

    Since ASP.NET is out and ASP.NET 2.0 is on it`s way, ASP is not the top platformchoice of Windows developers, but many of us still have to work on ASP because there are lots of older websites which use ASP technology. So I think my tip is still useful. An ASP developer who is using…

  • .NET Web Kullanıcı Kontrolleri

    .NET ile etkileşimli Web kullanıcı kontrolleri kullanarak hayatınızı kolaylaştırın! .NET Web Kullanıcı Kontrolleri başlıklı makalemi okuyabilirsiniz.

  • Use Your Own ActiveX Control in ABAP

    Here are the basic steps needed to use your own ActiveX control in SAP. It is assumed that the control is registered as kksap1.Control1 in Windows. STEP 1: Create a custom container named as “PARENT”. STEP 2: Put this code into your programs PBO: data: ctrl_name(80) type c. if not cl_gui_object=>activex is initial. ctrl_name =…

  • .NET ve Interface Kullanımı

    Class ve Inheritance kavramlarını biliyorsunuz. Ya Interface? Nesne tabanlı programcılık konusunda iyi bir noktaya gelmek istiyorsanız, Interface’leri de anlamanız gerekiyor. .NET ve Interface Kullanımı makalem bu konuda faydalı olacaktır.