This is a migrated thread and some comments may be shown as answers.

Yet intellisense

4 Answers 236 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Andrea
Top achievements
Rank 2
Iron
Andrea asked on 04 Jul 2008, 01:18 PM
For me is the moment to solve my old intellisense problem.

What are the known steps to have a fully working intellisense?

Thanks

p.s.: I have VS2008 and use NET 2.0 assemblies.

4 Answers, 1 is accepted

Sort by
0
Helen
Telerik team
answered on 04 Jul 2008, 02:22 PM
Hello Andrea,

We are not exactly sure what might be causing the problem.Could you please send us a sample page which demonstrates the issue together with the web.config file of the project? We will examine your files locally and probably find a solution.

We need to know whether you have lost intellisense in ASPX/ASCX pages or in the codebehind CS/VB code. Also, if your project files are stored on a network drive, you need to copy the Telerik assemblies in your computer's GAC for the Visual Studio intellisense to work.

Thank you for your time and cooperation.

Regards,
Helen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Andrea
Top achievements
Rank 2
Iron
answered on 04 Jul 2008, 03:24 PM
In my main web application, I lost intellisense in ASPX/ASCX markup (in other more simple web applications all is fine).
My project files are locally and I copied Telerik.Web.UI.dll in GAC and added Telerik.Web.UI.xml in bin folder.

And this is my web.config
<?xml version="1.0" encoding="UTF-8"?><configuration> 
  <configSections> 
    <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
      <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
        <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/> 
        <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
          <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"/> 
          <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/> 
          <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/> 
        </sectionGroup> 
      </sectionGroup> 
    </sectionGroup> 
    <sectionGroup name="RequestCenter"
      <section name="Settings" type="Descor.RequestCenter.Configuration.SettingsSection, RequestCenter"/> 
    </sectionGroup> 
    <sectionGroup name="DEM"
      <section name="Settings" type="Descor.DEM.Configuration.SettingsSection, DEM"/> 
    </sectionGroup> 
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
      <section name="Descor.Cassandra.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/> 
    </sectionGroup> 
  </configSections> 
 
  <appSettings> 
    <!-- InfocadSever Connection parameters--> 
    <add key="SSO_IP" value="127.0.0.1"/> 
    <add key="SSO_PORT" value="7778"/> 
    <add key="SysAccount" value=""/> 
    <add key="SysPassword" value=""/> 
 
    <!-- Telerik Controls Skins definition--> 
    <add key="WindowSkin" value="Office2007"/> 
    <add key="GridSkin" value="Office2007"/> 
    <add key="TabStripSkin" value="Descor"/> 
    <add key="ComboBoxSkin" value="Office2007"/> 
    <add key="TreeSkin" value="Office2007"/> 
    <add key="TreeContextMenuSkin" value="Vista"/>     
    <add key="EditorSkin" value="Default2006"/> 
    <add key="InputSkin" value="Office2007"/> 
    <add key="CalendarSkin" value="Default2006"/> 
    <add key="MenuSkin" value="descor"/> 
    <add key="UploadSkin" value="Office2007"/> 
    <add key="SchedulerSkin" value="Office2007"/> 
    <add key="ToolbarSkin" value="Office2007"/> 
    <add key="ToolTipSkin" value="Web20"/> 
    <add key="ContextMenuSkin" value="Vista"/> 
    <add key="ColorPickerSkin" value="Office2007"/> 
 
      <!-- Parameter for the Login page URL (Required) --> 
    <add key="InfocadAuthentication.LoginUrl" value="/Default.aspx" /> 
    <!-- Parameter for the Authentication cookie Name (Required) --> 
    <add key="InfocadAuthentication.Cookie.Name" value=".CUSTOM_AUTH" /> 
    <!-- Parameter for Timeout for Cookie expiration in minutes  
    (Optional- persist cookie across browser sessions) --> 
    <add key="InfocadAuthentication.Cookie.Timeout" value="30" /> 
  </appSettings>     
   
  <RequestCenter>      
    <Settings> 
      <!-- AllowUserRegistration: allow users auto ticket functionality--> 
      <AllowUserRegistration value="false"/> 
      <!-- DefaultLanguage: application default language --> 
      <DefaultLanguage value="it-IT"/> 
      <!-- MailingType: none = disable alerting system; Work = next step worker; Admin = only Admin mailing; All = worker and admin mailing -->      
      <MailingType value="Work"/> 
      <!-- MailingMode: none = no mails sending; Server = uses InfocadServer mailing system; NET = uses System.Net.Mail classes (check the configuration section) --> 
      <MailingMode value="Server"/> 
      <!-- DataProviderName: data provider system to use--> 
      <DataProviderName value="System.Data.OracleClient" /> 
      <!-- DALType: data access layer to use--> 
      <DALType value="RequestCenter.DAL.Oracle"/> 
      <!-- ExpityAlert: value in minutes for ticket expiration warning--> 
      <ExpiryAlert value="60"/> 
    </Settings> 
  </RequestCenter> 
 
  <DEM> 
    <Settings> 
      <!-- DefaultLanguage: application default language --> 
      <DefaultLanguage value="it-IT"/> 
      <!-- ConnectionStringName: connection string to use --> 
      <ConnectionStringName value="DEMdata"/> 
      <!-- DataProviderName: data provider system to use--> 
      <DataProviderName value="System.Data.OracleClient" /> 
      <!-- DALType: data access layer to use-->  
      <DALType value="DEM.DAL.Oracle"/> 
      <!-- WorkflowMultiplier: Strong no space string to identify application workflows--> 
      <WorkflowMultiplier value="MANUTENZIONE" /> 
    </Settings> 
  </DEM> 
 
  <system.web> 
    
    <webServices> 
      <protocols> 
        <add name="HttpGet"/> 
      </protocols> 
    </webServices> 
      <httpHandlers> 
          <remove path="*.asmx" verb="*"/> 
          <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/> 
 
          <!-- Property --> 
          <add path="assetimg.ashx" verb="*" type="Descor.PropertyCenterWeb.Handlers.ImageAssetHandler, PropertyCenterWeb"/> 
          <add path="roomimg.ashx" verb="*" type="Descor.PropertyCenterWeb.Handlers.ImageRoomHandler, PropertyCenterWeb"/> 
          <add path="floorimg.ashx" verb="*" type="Descor.PropertyCenterWeb.Handlers.ImageFloorHandler, PropertyCenterWeb"/> 
          <add path="buildingimg.ashx" verb="*" type="Descor.PropertyCenterWeb.Handlers.ImageBuildingHandler, PropertyCenterWeb"/> 
          <add path="districtimg.ashx" verb="*" type="Descor.PropertyCenterWeb.Handlers.ImageDistrictHandler, PropertyCenterWeb"/> 
          <add path="peopleimg.ashx" verb="*" type="Descor.PropertyCenterWeb.Handlers.ImagePeopleHandler, PropertyCenterWeb"/> 
          <add path="index.ashx" verb="*" type="Descor.PropertyCenterWeb.Handlers.IndexHandler, PropertyCenterWeb"/> 
          <add path="propertyDoc.ashx" verb="*" type="Descor.PropertyCenterWeb.Handlers.DocumentHandler, PropertyCenterWeb"/> 
 
          <!-- Global --> 
          <add path="stripchart.ashx" verb="*" type="Descor.GlobalWeb.Handlers.ChartHandler, GlobalWeb" /> 
          <add path="*.ashx" verb="*" type="Descor.GlobalWeb.Handlers.DocumentHandler, GlobalWeb"/> 
 
          <!-- AJAX and Telerik--> 
          <add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Version=2008.1.619.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/> 
          <add path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/> 
          <add path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/> 
          <!--<add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" />--> 
          <add path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=2.5.8.519, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" validate="true"/> 
          <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2008.1.619.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/> 
      </httpHandlers> 
      <httpModules> 
          <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
          <!-- necessario per il progress manager del RadUpload --> 
          <!--<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" />--> 
 
      <!-- Add a Custom Authentication module --> 
      <add name="InfocadAuthenticationModule" type="Descor.Cassandra.InfocadSecurity.InfocadAuthenticationModule, Cassandra" /> 
      </httpModules> 
 
    <httpRuntime maxRequestLength="50000" executionTimeout="13600"/> 
 
    <compilation debug="true"
      <expressionBuilders> 
        <add expressionPrefix="Themes" type="Descor.Utility.Web.Theme.ThemeExpressionBuilder, Utility"/> 
      </expressionBuilders> 
      <assemblies> 
                <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
                <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
                <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
                <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
                <add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.DirectoryServices.Protocols, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
                <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> 
                <add assembly="System.Web.RegularExpressions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> 
      </assemblies> 
      <buildProviders> 
        <add extension=".rss" type="RssToolkit.Rss.CodeGeneration.RssBuildProvider,RssToolkit"/> 
        <add extension=".rssdl" type="RssToolkit.Rss.CodeGeneration.RssdlBuildProvider,RssToolkit"/> 
      </buildProviders> 
    </compilation> 
    <pages styleSheetTheme="descor"
      <namespaces> 
        <clear/> 
        <add namespace="System"/> 
        <add namespace="System.Collections"/> 
        <add namespace="System.Collections.Specialized"/> 
        <add namespace="System.Configuration"/> 
        <add namespace="System.Text"/> 
        <add namespace="System.Text.RegularExpressions"/> 
        <add namespace="System.Web"/> 
        <add namespace="System.Web.Caching"/> 
        <add namespace="System.Web.SessionState"/> 
        <add namespace="System.Web.Security"/> 
        <add namespace="System.Web.Profile"/> 
        <add namespace="System.Web.UI"/> 
        <add namespace="System.Web.UI.WebControls"/> 
        <add namespace="System.Web.UI.WebControls.WebParts"/> 
        <add namespace="System.Web.UI.HtmlControls"/> 
        <add namespace="Descor.Utility"/>      
      </namespaces> 
 
      <controls> 
        <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
        <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2008.1.619.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> 
        <add tagPrefix="wlcm" src="~/UserControls/welcomeTip.ascx" tagName="welcomeTip"/> 
        <add tagPrefix="WebCustomControl" namespace="Descor.Utility.Web.CustomControl" assembly="Utility"/> 
        <add tagPrefix="RequestCenterWebCommon" tagName="ticketGroupTabs" src="~/CommonWeb/RequestCenter/UserControls/ticketGroupTabs.ascx"/> 
        <add tagPrefix="ScheduleCenterWebCommon" tagName="AlertSelector" src="~/CommonWeb/ScheduleCenter/UserControls/AlertSelector.ascx"/> 
        <add tagPrefix="ScheduleCenterWebCommon" tagName="OBJJLGrid" src="~/CommonWeb/ScheduleCenter/UserControls/OBJJLGrid.ascx" /> 
        <add tagPrefix="ScheduleCenterWebCommon" tagName="PlanGrid" src="~/CommonWeb/ScheduleCenter/UserControls/PlanGrid.ascx" /> 
        <add tagPrefix="Common" tagName="genericpie" src="~/CommonWeb/Common/UserControls/genericPie.ascx"/> 
        <add tagPrefix="GlobalWebCommon" tagName="CategoryTree" src="~/CommonWeb/Global/UserControls/CategoryTree.ascx" /> 
      </controls> 
    </pages> 
 
    <authentication mode="Forms" > 
      <forms path="/" loginUrl="Default.aspx"  defaultUrl="MainForm.aspx" slidingExpiration="true" protection="All"/> 
 
    </authentication> 
    <authorization> 
      <deny users="?"/> 
    </authorization> 
 
    <customErrors mode="Off" > 
    </customErrors> 
    <trace enabled="false" mostRecent="true" pageOutput="false" requestLimit ="100" traceMode="SortByTime" ></trace
  </system.web> 
     
  <system.net> 
    <mailSettings> 
        <smtp from="Infocad Server Mailing System &lt;infocadserver@descor.com&gt;"
            <network host="mailbus.fastweb.it" /> 
        </smtp> 
    </mailSettings> 
 </system.net> 
     
  <location path="ScheduleWeb/TestObjects.aspx"
    <system.web> 
      <authorization> 
        <allow users="?"/> 
      </authorization> 
    </system.web> 
  </location> 
  <location path="DefaultError.aspx"
    <system.web> 
      <authorization> 
        <allow users="?"/> 
      </authorization> 
    </system.web> 
  </location> 
  <location path="trace.axd"
    <system.web> 
      <authorization> 
        <allow users="?"/> 
      </authorization> 
    </system.web> 
  </location> 
  <location path="GlobalWeb/Security.aspx"
    <system.web> 
      <authorization> 
        <allow users="?"/> 
      </authorization> 
    </system.web> 
  </location> 
  <!-- necessario per il progress manager del RadUpload --> 
  <location path="Telerik.RadUploadProgressHandler.aspx"
    <system.web> 
      <authorization> 
        <allow users="*"/> 
      </authorization> 
    </system.web> 
  </location> 
  <location path="Telerik.Web.UI.WebResource.axd"
    <system.web> 
        <authorization> 
            <allow users="*"/> 
        </authorization> 
    </system.web> 
  </location> 
   
    <system.webServer> 
    <validation validateIntegratedModeConfiguration="false"/> 
    <modules> 
      <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
    </modules> 
    <handlers> 
      <remove name="WebServiceHandlerFactory-Integrated"/> 
      <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
      <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
      <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 
      <add name="Telerik.ReportViewer.axd_*" path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=2.5.8.519, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" preCondition="integratedMode,runtimeVersionv2.0"/> 
    </handlers> 
  </system.webServer> 
</configuration> 
 

I think that send you a sample page with demostrates the behavior is useless.. i simply dont have intellisense on Telerik Ajax Controls.
I receive this message on markup: Element 'Some Telerik Ajax control' is not a know element. This can occur if there is a compilation error in the Web site, or the web.config file is missing

Additional information: with old 1425 version all was working.

Thanks
0
Helen
Telerik team
answered on 07 Jul 2008, 04:23 PM
Hello Andrea,

Actually we are not sure what the exact setting in the web.config file is causing the problem.
We modified your web.config so it works at our side. Please see the attached project for the reference.
Does it work at your side?

If it is working, we will try to isolate the issue by adding your other settings one by one.

Sincerely yours,
Helen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Andrea
Top achievements
Rank 2
Iron
answered on 14 Nov 2008, 11:30 AM
I see that simply include the RadControl in a DIV tag solves the problem.

Best Regards.


Tags
General Discussions
Asked by
Andrea
Top achievements
Rank 2
Iron
Answers by
Helen
Telerik team
Andrea
Top achievements
Rank 2
Iron
Share this question
or