Search

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

Matching Posts

  • Re: DynamicData and WDP

    I mean the patch found here : http://code.msdn.microsoft.com/dynamicdata/Release/ProjectReleases.aspx?ReleaseId=1039 There is a few minor API changes. One of the ascx has been renamed too. The generated code for the "Dynamic Data Entities Web Application" is slightly different between before and after applying the patch. You can't actually build "as is" a project created with SP1 Beta 1 once you applied the 0523a patch. But a brand new created project correctly build.
    Posted to ASP.NET Dynamic Data (Forum) by Steffff on 6/4/2008
  • Re: DynamicData and WDP

    Thanks for your answer. I haven't already tested that point because the Dynamic Data patch break my code, so I will look at this at a later time. But I'm happy to know that my problem is yet resolved !
    Posted to ASP.NET Dynamic Data (Forum) by Steffff on 6/4/2008
  • DynamicData and WDP

    Has someone tried WDP against a web site using Dynamic Data ?? Dynamic Data dynamically loads its ascx but they don’t exist after compilation.
    Posted to ASP.NET Dynamic Data (Forum) by Steffff on 6/4/2008
  • Re: Accordion control not visible when databinding

    Accordion databinding won't work with DataSet or DataTable. You have to use DataView or DataReader. Try : < ajaxToolkit : Accordion runat ="server" DataSource =' <%# new System.Data.DataTableReader(myDataTable) %> '> or : < ajaxToolkit : Accordion runat ="server" DataSource =' <%# new System.Data.DataTableReader(myDataTable) %> '>
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Steffff on 9/25/2007
    Filed under: Accordion, DataBinding
  • Re: Path.GetFileName error in DefaultWsdlHelpGenerator.aspx

    Thanks for your help... but the call to GetFileName come from WsdlHelpGenerator.aspx... In fact I really had a string called Path ! I've found it in our Page base class we were using with our web.config < pages pageBaseType = " " > So WsdlHelpGenerator was using the base class ! Now this point is cleared it still didn't work. But I have found why. We use another setting : < pages autoEventWireup = " false " > WsdlHelpGenerator.aspx needs autoEventWireup="true" !! Is it a bug or a feature
  • Path.GetFileName error in DefaultWsdlHelpGenerator.aspx

    I've got a project using AJAX and latest ControlToolkit. I need to add a WebService, the first one of the project. I always get the same error, even when I tried to test a simple blank "hello world" asmx. My .asmx just run fine in a brand new standard ASP.NET project. My Web.config does not specify anything about WebServices. Exploring the forum I've seen that someone has revolved problems adding this sequences in its Web.config. But I don't understand it's use and it didn't solve anything for me
  • Re: Problems Deploying Web Application

    Frinavale: It was only after using the Depends.exe that comes with Visual Studio 2005 that I realized that there are CPU conflicts concerning this DLL. What's the problem ? Frinavale: I've tried registering the DLL on the server but the web-application ignores the registered DLL and uses the one in the project's "bin" folder. You should only have the interop in bin folder. Anyhow if you regsvr32 another physical dll this one should be used, not any other ones. Frinavale: but I don't remember seeing
    Posted to VS Web Deployment Projects (Forum) by Steffff on 2/13/2007
  • Re: Web Deployment Project only copies files of 'known' extension??

    ?????? No no no.... .txt is a known extension, and the file will get copied. .lic is a unknown file and you have to tell your project how to deal with it... Or simply copy it. Includes are relative to the root of your project If you handle the copy within your WDP the path is relative to your web deployment project root, not your web application root of course. You juste have to point to the good directory. So LicenceFile Include = " *.lic " you have used will point to any .lic at your wdp root.
    Posted to VS Web Deployment Projects (Forum) by Steffff on 2/12/2007
  • Re: Deploy main web.config

    OK. So if you know you need a setup, deploy your web.config as a setup. Sorry, but I think I have not understand what your problem was... You were talking about WDP first. Good luck ! gbarry: I try to deploy a new main web.config (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\CONFIG\web.config) for all site on the server with a 2005 deployment project. But it never overrides the existing files.
    Posted to VS Web Deployment Projects (Forum) by Steffff on 2/12/2007
  • Re: Problems Deploying Web Application

    Strange... I have a Web Application running on Server 2003 x64 using Log Parser (COM interface) with no problem. There is only one binary, one path, the same with a x86 or x64 client. The interop try to instantiate your component using its classid. Perhaps your component is badly registered. You said it was working with a "Windows Application". Do you mean a .NET Windows Application ? Your application may instantiate the COM component with it's ProgID, not it's ClassID. You can check also the registry
    Posted to VS Web Deployment Projects (Forum) by Steffff on 2/12/2007
Page 1 of 5 (41 items) 1 2 3 4 5 Next >