.NET · C#

.NET 2015: C# 6

C# in its 6th version received its major change in the language engine “the compiler” along with many other little improvements in the language features The new compiler “Roslyn” C#/VB teams were working for years on the new compiler Roslyn, and here is why What is wrong with the old compiler? The old compiler is some… Continue reading .NET 2015: C# 6

Advertisement

ASP.NET · Web

ASP.NET AJAX Control Toolkit HTMLEditorExtender issue when in modal popup in IE 7

Over again, supporting IE7 is a nightmare. Today I have been assigned to a defect says “When user enters long text and words in text editor in modal popup using IE7, the whole page/window horizontal scroll bar appeared and get wider as the user typing”. I used AJAX Control Toolkit HTMLEditorExtender to provide simple formatting… Continue reading ASP.NET AJAX Control Toolkit HTMLEditorExtender issue when in modal popup in IE 7

ASP.NET · Web

Page.MaintainScrollPositionOnPostBack issue in IE 7 when nested GridViews used

As the page’s content becomes bigger and bigger like the one I am working on currently, specific features are more critical than others. In such case we may need to apply performance and user experience techniques such as content lazy loading, partial content updating, and maintain page’s scroll position cross requests, and more … I… Continue reading Page.MaintainScrollPositionOnPostBack issue in IE 7 when nested GridViews used

ASP.NET

Hide export format in RDLC/SSRS Report Viewer control

I recently needed to hide or disable PDF format in Export Formats dropdown list displayed in SSRS ReportViewer’s toolbar in Local Report mode. Unfortunately, ReportViewer control has no method or property to manage specific format’s visibility and this is true also for the recently released Report Viewer 10. We can use Report Viewer’s property ShowExportControls… Continue reading Hide export format in RDLC/SSRS Report Viewer control

ASP.NET · SQL Server

Visual Studio 2010 Report Designer doesn’t support SSRS 2005 format

Note: This issue should be resolved by converting VS 2008 (SSRS 2005) RDLCs to VS 2010 (SSRS 2008) RDLCs and adding Microsoft.ReportViewer.WebForms.dll Version 10 reference to your .NET Framework 3.5 project’s references instead of Version 9 Thanks to the Framework Multi-Targeting new feature of Visual Studio 2010 which enables .NET developers to develop .NET applications… Continue reading Visual Studio 2010 Report Designer doesn’t support SSRS 2005 format