Search

You searched for the word(s): userid:344611

Matching Posts

  • Re: Specifying the the javascript include files manually

    If you look in the AjaxControlToolkit Project, you will see the .js files in each of their respective folders e.g. AjaxControlToolkit.Calendar.CalendarBehavior.js will be in the Calendar folder and it will be called CalendarBehavior.js. If you're referencing the AjaxControlToolKit dll then the .js files are embedded in the assembly and so to load the js files you need to reference the assembly like so: <asp:ScriptManager ID="ScriptManager1" EnablePartialRendering="true" runat="server"> <Scripts>
  • Re: 'AjaxControlToolkit' is undefined, of course

    Thanks for the reply Sohnee. Nope, I thought of that one already. I copied the web.config sections straight from the project and put it into mine, but still nothing. I know that to solve my "Sys" is undefined error I had to load the scripts used by the extensions into the ScriptManager using script references like so: <asp:ScriptManager ID="ScriptManager1" EnablePartialRendering="true" runat="server"> <Scripts> <asp:ScriptReference Name="MicrosoftAjax.js" Path="/IMsAjaxScripts/MicrosoftAjax
  • Re: 'AjaxControlToolkit' is undefined, of course

    Yes, I installed the Extensions on the production server. How is the AjaxControlToolkit defined on the page? I assume that the "AjaxControlToolkit" undefined error is being caused when the page's script calls the toolkit like so: <script type="text/javascript"> <!-- Sys.Application.initialize(); Sys.Application.add_init(function() { $create( AjaxControlToolkit.TabPanel , {"headerTab":$get("__tab_TabContainer1_OptionsTab")}, null, {"owner":"TabContainer1"}, $get("TabContainer1_OptionsTab
  • 'AjaxControlToolkit' is undefined, of course

    Hi all, After dealing with the dreaded "Sys" is undefined error. I now have an 'AjaxControlToolkit' is undefined error :-) Everything works great in development on WinXP SP2, VS2005. But when it's moved over to the production Win2K3 server I get the 'AjaxControlToolkit' is 'undefined' error. Has anyone else seen this? My web.config is copied and modified from the Sample Toolkit website, and the AjaxControlToolkit.dll is definitely in the Bin directory of my site. I also tried running the Sample Website
  • Trouble Accessing Profile Custom Class DLL Properties

    Hello, I have a problem accessing some properties in my Profile object. These properties are defined in the web config of a type ="CustomClass" and this custom class is from a compiled DLL. Setting them seems to work and they are persisted, but when I try and access them they are blank or null. The funny thing is that if I place the actual custom class .cs files files inside of my App_Code folder the Profile will work fine and everything is persisted. It is only if I compile the custom class in it
    Posted to State Management (Forum) by horatio05 on 4/11/2006
  • Profile not Persisting in Class Library Project

    Hello, I'm trying to use a Profile object inside of multiple web apps as well as a class library project that will be referenced by said web app. The problem I run into is that some of the profile properties aren't coming back persisted inside of my class library project i.e. I set them inside of my web app and when I check them from my web app they are fine, but then I check them from my library project and those properties are null, or blank. The properties are actually classes I created and that
    Posted to State Management (Forum) by horatio05 on 4/11/2006
  • Using Profile in Class Library Project

    Hello, I'm trying to use a Profile object inside of multiple web apps as well as a class library project that will be referenced by said web app. The problem I run into is that some of the profile properties aren't coming back persisted inside of my class library project i.e. I set them inside of my web app and when I check them from my web app they are fine, but then I check them from my library project and those properties are null, or blank. The properties are actually classes I created and that
    Posted to Web Parts and Personalization (Forum) by horatio05 on 4/10/2006
  • VirtualPathProvider Fails under Load

    I'm trying to use the VirtualPathProvider to access Themes from a folder other than the application's App_Themes folder. This seems to work fine, until I use the application under load. When that happens I get access errors such as this one: Type : System.IO.IOException, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Message : The process cannot access the file 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\4b0edc2a\c14fdd5\Theme_Theme1.compiled
    Posted to Web Forms (Forum) by horatio05 on 3/21/2006
  • Re: Themes caching on .skin file overwrite?

    I figured it out. I needed to override the VirtualPathProvider.GetCacheDependency Method so that it looks for changes in my new skin file location rather than the App_Themes folder under the application root.
  • Re: How to direct app_themes to virtual file provider? thanks!

    I just figured that one out :-) Thanks for the help!
    Posted to Getting Started (Forum) by horatio05 on 1/25/2006
Page 1 of 7 (61 items) 1 2 3 4 5 Next > ... Last »