Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi
I am missing a web.config part in my application which restricts my application.I have added the dll files as reference.I am working on Telerik.web.Ui controls.
Please suggest me where I was wrong

What I have tried:

HTML
<pre><connectionStrings>
    <add name="sqlconnection"
       connectionString="data source=DESKTOP-68VGRJG;
   initial catalog=master;persist security info=True; 
   Integrated Security=SSPI;"
       providerName="System.Data.SqlClient" />
  </connectionStrings>
  <appSettings>
    <add key="Telerik.AsyncUpload.ConfigurationEncryptionKey" value="abcdefghijklmnopqrstuvwxyz"/>
    <add key="Telerik.Upload.ConfigurationHashKey" value="123456789qwerty"/>
    <add key="Telerik.Skin" value="Black"/>
  <add key="Telerik_Web_UI_WebResource_axd" value="123456789qwerty"/>
  
  </appSettings>
 
  <system.web>
    <authentication mode="None" />
    <compilation debug="true" targetFramework="4.6" />
    <httpRuntime targetFramework="4.6" />
    <pages>
      <namespaces>
        <add namespace="System.Web.Optimization" />
        <add namespace="Microsoft.AspNet.Identity" />
      </namespaces>
      <controls>
        <add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" />
      </controls>
    </pages>
    <membership>
      <providers>
        <!--
	      ASP.NET Membership is disabled in this template. Please visit the following link http://go.microsoft.com/fwlink/?LinkId=301889 to learn about the ASP.NET Membership support in this template
        -->
        <clear />
      </providers>
    </membership>



ASP.NET
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
        
        
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="RadGrid1">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="RadGrid1" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
            </AjaxSettings>
        </telerik:RadAjaxManager>
Posted
Updated 11-Mar-17 5:59am

1 solution

This thread described the same error. I would also suggest you post the question to Telerik Developer Forums[^].

'~/Telerik.Web.UI.WebResource.axd' is missing in web.config - Editor - UI for ASP.NET AJAX Forum[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900