18 Eylül 2014 Perşembe
Visual Studio 2013 Yeni Ozellikler
Peek Definition – Alt+F12
Code Lens (ALT-2)
Roaming Settings
Browsing Link
Examine return values of method calls
10 Eylül 2014 Çarşamba
web.config encryption
Merhaba,
web.config dosyasındaki kritik bilgilerin şifrelenmesi için güzel bir msdn makalesi.
http://msdn.microsoft.com/en-us/library/dx0f3cf2(v=vs.85).aspx
5 Eylül 2014 Cuma
windows service olusturma ve kurulum
Selamlar,
Windows service olusturma ve install ile ilgili guzel bir msdn yazısı.
http://msdn.microsoft.com/en-us/library/zt39148a(v=vs.110).aspx
Ayrı bir install paketi icin VS2010 projelerinde setup ve deployment proje yaratıyorduk.
2012 de kaldırılmış. Installshield Limited Edition Template’i gelmiş.
http://msdn.microsoft.com/en-us/library/2kt85ked(v=vs.110).aspx
26 Ağustos 2014 Salı
SSRS The request failed with HTTP status 401: Unauthorized
Exception Details: System.Net.WebException: The request failed with HTTP status 401: Unauthorized.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
|
Stack Trace:
[WebException: The request failed with HTTP status 401: Unauthorized.]
Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.GetSecureMethods() +192
Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.IsSecureMethod(String methodname) +51
Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.SetConnectionSSLForMethod(String methodname) +12
Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.ProxyMethodInvocation.Execute(RSExecutionConnection connection, ProxyMethod`1 initialMethod, ProxyMethod`1 retryMethod) +417
Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.LoadReport(String Report, String HistoryID) +180
Microsoft.Reporting.WebForms.ServerReport.EnsureExecutionSession() +79
Microsoft.Reporting.WebForms.ServerReport.GetParameters() +49
YnaDialogBasePage.Page_Load(Object sender, EventArgs e) +130
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +51
System.Web.UI.Control.OnLoad(EventArgs e) +92
System.Web.UI.Control.LoadRecursive() +54
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +772
|
12 Ağustos 2014 Salı
TELERIK 2014.2.618.35 GEÇİŞİNDE ORTAYA ÇIKAN SORUNLAR VE ÇÖZÜMLERİ
TELERİK 2014.2.618.35 GEÇİŞİNDE ORTAYA ÇIKAN SORUNLAR VE ÇÖZÜMLERİ
HTML Hataları
<GridBoundColumn Display=”false”> alan adedini azaltmak için
| |
BoundColumn’u silip, Multiple datakeyname kullanabiliriz.
|
Griddten çektiğimiz Id ile, güncel bilgiye VT den erişecek bir yapıya geçeriz.
|
|
| |
Breaking Changes
11 Temmuz 2014 Cuma
IIS subpath'te ayrı bir uygulama çalıştırmak
Merhaba,
IIS 7 ve üzerinde host edilen uygulamalarımızda, aynı domain ve subpath’lerinde farklı uygulamalar çalıştırmamız gereken durumlar olacaktır.
Örneğin;
xyz.fabrikam.com isimli dns’ten yayın yapan bir web application var. Klasik bir asp.net uygulaması. Forms authentication ile çalışıyor.
xyz.fabrikam.com\ozelservis isimli bir adresten web servis ile farklı uygulamalara data yayınlamak istiyoruz.
Mevcut durum:
İstenilen:
1) Sağ click, add application
2) Alias tanımlama ve web servis path’i gösterme
Çalışma ortamını hazırladık.
Devamında yaşanan en büyük sorun, child uygulamanın, master uygulamanın web.config dosyasından etkilenmesi (en sık yaşanan örnek, site forms authenticationlı, web servis’e erişimde sıkıntı yaşanır).
Bunu yönetmek için en yaygın çözüm yöntemi inheritInChildApplications kullanımı.
Tag’in kullanımı ile ilgiye aşağıdaki linkten bakabilirsiniz.
İyi çalışmalar
9 Temmuz 2014 Çarşamba
The report parameter is read-only and cannot be modified. (rsReadOnlyReportParameter)
1 Temmuz 2014 Salı
Telerik 2014.2.618.35 2014 Q2 Walkthrough
<controls> <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2014.2.618.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/> </controls>
protected void BookingListesiGridView_ColumnCreated(object sender, GridColumnCreatedEventArgs e)
{
if (e.Column.ColumnType == "GridExpandColumn")
{
e.Column.HeaderStyle.Width = Unit.Pixel(35);
}
}
26 Haziran 2014 Perşembe
Telerik.Web.UI.WebResource.Exists System.NullReferenceException dynatrace
13 Haziran 2014 Cuma
Publish Sırasinda web.config Nasıl Exclude Yapılır
Visual Studio ile çalışıyorsunuz ve canlı ortamdaki web.config dosyanızı publish sırasında ezmek istemiyorsunuz.
Çözümü oldukça basit;
Simply select the web.config properties and change 'Build Action' to 'None' and 'Copy To Output Directory' to 'Do Not copy'
Kolay gelsin..













