Search

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

Matching Posts

  • Re: Detecting Compiler Errors in Views

    Thanks jeloff. But I also heard that .aspx page templates (containing inline code) are compiled only on the first access at runtime, so subsequent runs do not re-compile the page at all unless it has been modified. Is that true? I know that my inline code becomes part of the rendering process by being injected in the __Render method. Isn't there a way to pre-compile those .aspx pages ?
    Posted to ASP.NET MVC (Forum) by Nazaf on 11/10/2009
  • Detecting Compiler Errors in Views

    Hi, If I compile my views by modifying .csproj file as follows: <Target Name="AfterBuild" Condition="'$(Configuration)'=='Release'"> <AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)"/> </Target> Now I compile in Release mode. I can detect errors. But do really my .aspx pages compile, so that when I access the pages for first time no compilation takes place at all? Or is it just to detect erros
    Posted to ASP.NET MVC (Forum) by Nazaf on 11/8/2009
    Filed under: MVC Detecting Compiler Errors in Views
  • Re: Detecting Compiler Errors in Views

    Near, Your response is not clear nor does answer my question.
    Posted to ASP.NET MVC (Forum) by Nazaf on 11/8/2009
  • Re: Scheduling tasks in ASP.NET

    Thanks, Mithila. It works and better of all, it's totally FREE.
    Posted to Getting Started (Forum) by Nazaf on 10/26/2009
  • Virtual Path Provider

    Hi, Does Virtual Path Provider work for pre-compiled sites in ASP.NET 4 ? Thanks!
    Posted to ASP.NET 4 Beta 2 (Forum) by Nazaf on 10/24/2009
  • Scheduling tasks in ASP.NET

    Hi, My ASP.NET 3.5 site is on a shared hosting. I want to schedule some tasks - like downloading files - to be run ever month. Is there a way to do this in my ASP.NET application? Thanks!
    Posted to Getting Started (Forum) by Nazaf on 10/23/2009
  • Re: Scheduling tasks in ASP.NET

    Thanks. It can solve the problem. Also, it is cheap and scalable. However, the only issue is the timeout limit, which is only 600 seconds. So I'll have to figure this out.
    Posted to Getting Started (Forum) by Nazaf on 10/23/2009
  • Executing asynchronous code

    Hi, Is it possible for a page or HttpHandler to return response before finishing its code execution. I have a page which takes quite long time, so I need this page to return response to the user, and to keep executing its code. Asynchronous pages do not solve this problem. Any ideas? Thanks.
    Posted to HttpHandlers and HttpModules (Forum) by Nazaf on 10/23/2009
  • Re: Virtual Path Provider question

    For some unknown reasons, Microsoft decided not to allow Virtual Path Providers with pre-compiled websites. However, there is a work-around for this. You can see how this works at http://sunali.com/2008/01/09/virtualpathprovider-in-precompiled-web-sites
    Posted to Web Forms (Forum) by Nazaf on 10/11/2009
    Filed under: Virtual path provider VPP website precompilation issue
  • Virtual Path Provider question

    Hi, I want to use Virtual Path Provider to read a .aspx file from a DB and serve it. However, this .aspx page has a separate C# code-behind file which initializes some controls. Now If I pre-compile my site using Web Deployment Project, will this work? All the C# code will compile into a single assembly, so I wonder if the page's code will execute. If not, then how to achieve this? Thanks!
    Posted to Web Forms (Forum) by Nazaf on 10/9/2009
Page 1 of 10 (96 items) 1 2 3 4 5 Next > ... Last »