I recently upgraded the Telerik version from 2025.1.416 to 2025.3.825, and started getting this NullReferenceException during debugging.
I noticed I get the error when debugging RadGrid with the Skin property.
Hi Alex,
Thank you for reporting this issue! I've made the report public, as other users might encounter the same behavior.
This NullReferenceException that appears during debugging is expected behavior and does not represent an actual problem in your application.
Visual Studio stops at a NullReferenceException in the GetAppSetting() method when debugging with the "Break when this exception type is thrown" option enabled.
This happens because:
page.Site, which is null during runtime (this is normal behavior)page.Site is only intended for design-time scenarios (Visual Studio designer)try-catch block and does not affect functionalityYou can safely:
System.NullReferenceExceptionTelerik.Web.dll to the exceptions listNote: The application functions correctly regardless of this exception - it is purely a debugging behavior that can be safely ignored or suppressed.
Regards,
Rumen
Progress Telerik