New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Resolving "No license found for Telerik UI for ASP.NET AJAX"
Updated on Nov 4, 2025
Environment
| Product | UI for ASP.NET AJAX |
| Version | 2025 Q1 + |
Description
I encounter the error No license found for Telerik UI for ASP.NET AJAX or We couldn't verify your license key for Telerik UI for ASP.NET AJA despite having a valid license and ensuring the license key has been downloaded into Visual Studio. This issue happens in both local development and publishing environments.
Cause
The error occurs because Visual Studio cannot locate or validate the required license file or Script key attribute for Telerik UI for ASP.NET AJAX. The license activation process varies based on the ASP.NET Web Forms project type, which is either a Web Application or a Web Site project.
Solution
To resolve the issue, follow the steps based on your project type:
For Web Application Projects (have a .csproj or .vbproj file):
Using NuGet
- Install the latest Telerik.Licensing NuGet package.
- Download the
telerik-license.txtfile from the License Keys page. - Place the
telerik-license.txtfile in%AppData%\Telerik\(e.g.,C:\Users\YourUserName\AppData\Roaming\Telerik\). - Rebuild the project.
Without NuGet
- Go to the License Keys page in your Telerik account.
- Click the
Script keylink in the Telerik UI for ASP.NET AJAX row. - Select your preferred language and copy the license key.
- Add the license key as an assembly attribute in
AssemblyInfo.csor create a new file likeTelerikLicense.cs:
csharp
[assembly: global::Telerik.Licensing.EvidenceAttribute("your-license-key-here")]
For VB.NET projects, use:
vb
<Assembly: Telerik.Licensing.EvidenceAttribute("your-license-key-here")>
- Rebuild the project.
For Web Site Projects
- Go to the License Keys page in your Telerik account.
- Click the
Script keylink in the Telerik UI for ASP.NET AJAX row. - Select your preferred language and copy the license key.
- Add a CS class file (e.g.,
TelerikLicense.cs) to theApp_Codefolder. - Paste the license key as an assembly attribute:
csharp
[assembly: global::Telerik.Licensing.EvidenceAttribute("your-license-key-here")]
For VB.NET projects, use:
vb
<Assembly: Telerik.Licensing.EvidenceAttribute("your-license-key-here")>
- Rebuild your site and restart Visual Studio.
See Also
- Setting Up Your Telerik UI for ASP.NET AJAX License Key
- Web Applications with NuGet Licensing
- Web Applications without NuGet and Web Sites Licensing
- Telerik.Licensing NuGet Package
- YouTube Video: Fix Telerik UI for ASP.NET AJAX License Error Banner & Watermarks (NuGet)
- YouTube Video: Removing Telerik AJAX License Error without NuGet
- YouTube Video: Fix Telerik UI License Error in ASP.NET Web Forms Site